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