diff options
Diffstat (limited to 'src/gpg/result_analyse/ResultAnalyse.cpp')
-rw-r--r-- | src/gpg/result_analyse/ResultAnalyse.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/gpg/result_analyse/ResultAnalyse.cpp b/src/gpg/result_analyse/ResultAnalyse.cpp new file mode 100644 index 00000000..960c24cd --- /dev/null +++ b/src/gpg/result_analyse/ResultAnalyse.cpp @@ -0,0 +1,18 @@ +// +// Created by eric on 2021/6/8. +// + +#include "gpg/result_analyse/ResultAnalyse.h" + +const QString &ResultAnalyse::getResultReport() const{ + return resultText; +} + +int ResultAnalyse::getStatus() const { + return status; +} + +void ResultAnalyse::setStatus(int mStatus) { + if(mStatus < status) + status = mStatus; +} |