mirror of https://github.com/status-im/qzxing.git
29 lines
609 B
C
29 lines
609 B
C
|
#ifndef VALIDATIONSTATS_H
|
||
|
#define VALIDATIONSTATS_H
|
||
|
|
||
|
#include <QString>
|
||
|
#include <stdint.h>
|
||
|
|
||
|
class ValidationStats
|
||
|
{
|
||
|
private:
|
||
|
bool operationSuccess;
|
||
|
bool resultMatch;
|
||
|
QString errorMessage;
|
||
|
int64_t elaspedTime;
|
||
|
|
||
|
public:
|
||
|
ValidationStats();
|
||
|
bool getOperationSuccess() const;
|
||
|
bool getResultMatch() const;
|
||
|
QString getErrorMessage() const;
|
||
|
int64_t getElaspedTime() const;
|
||
|
|
||
|
void setOperationSuccess(bool value);
|
||
|
void setResultMatch(bool value);
|
||
|
void setErrorMessage(const QString &value);
|
||
|
void setElaspedTime(const int64_t &value);
|
||
|
};
|
||
|
|
||
|
#endif // VALIDATIONSTATS_H
|