summaryrefslogtreecommitdiff
path: root/src/shared/util.h
diff options
context:
space:
mode:
authorisanae <14251494+isanae@users.noreply.github.com>2019-07-18 22:35:12 -0400
committerisanae <14251494+isanae@users.noreply.github.com>2019-07-22 07:33:38 -0400
commitf95479b981b41f51a3ecf055c73f42440766e5d7 (patch)
tree4626fcd8db75d83f90a3e897836eccd69b9c3b8d /src/shared/util.h
parentc84240b75906fdc1f2ef8b41f4f3c00421dc61fa (diff)
log guid for security products
Diffstat (limited to 'src/shared/util.h')
-rw-r--r--src/shared/util.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/shared/util.h b/src/shared/util.h
index fc2028db..46764367 100644
--- a/src/shared/util.h
+++ b/src/shared/util.h
@@ -28,6 +28,7 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>.
#include <Windows.h>
#include <versioninfo.h>
+#include <QUuid>
class Executable;
@@ -370,7 +371,7 @@ class SecurityProduct
{
public:
SecurityProduct(
- QString name, int provider,
+ QUuid guid, QString name, int provider,
bool active, bool upToDate);
// display name of the product
@@ -394,10 +395,13 @@ public:
QString toString() const;
private:
+ QUuid m_guid;
QString m_name;
int m_provider;
bool m_active;
bool m_upToDate;
+
+ QString providerToString() const;
};