From f95479b981b41f51a3ecf055c73f42440766e5d7 Mon Sep 17 00:00:00 2001
From: isanae <14251494+isanae@users.noreply.github.com>
Date: Thu, 18 Jul 2019 22:35:12 -0400
Subject: log guid for security products
---
src/shared/util.h | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
(limited to 'src/shared/util.h')
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 .
#include
#include
+#include
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;
};
--
cgit v1.3.1