a few more comments

This commit is contained in:
isanae
2019-07-01 14:51:08 -04:00
parent 7c1ce768ef
commit ffebd4c101
+15
View File
@@ -241,6 +241,8 @@ private:
};
// represents a security product, such as an antivirus or a firewall
//
class SecurityProduct
{
public:
@@ -248,11 +250,24 @@ public:
QString name, int provider,
bool active, bool upToDate);
// display name of the product
//
const QString& name() const;
// a bunch of _WSC_SECURITY_PROVIDER flags
//
int provider() const;
// whether the product is active
//
bool active() const;
// whether its definitions are up-to-date
//
bool upToDate() const;
// string representation of the above
//
QString toString() const;
private: