summaryrefslogtreecommitdiff
path: root/noncore/settings/packagemanager/oconfitem.h
Side-by-side diff
Diffstat (limited to 'noncore/settings/packagemanager/oconfitem.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/packagemanager/oconfitem.h14
1 files changed, 9 insertions, 5 deletions
diff --git a/noncore/settings/packagemanager/oconfitem.h b/noncore/settings/packagemanager/oconfitem.h
index 7c158c9..9972c00 100644
--- a/noncore/settings/packagemanager/oconfitem.h
+++ b/noncore/settings/packagemanager/oconfitem.h
@@ -43,3 +43,4 @@ public:
OConfItem( Type type = NotDefined, const QString &name = QString::null,
- const QString &value = QString::null, bool active = true );
+ const QString &value = QString::null, const QString &features = QString::null,
+ bool active = true );
@@ -48,8 +49,10 @@ public:
const QString &value() { return m_value; }
+ const QString &features() { return m_features; }
bool active() { return m_active; }
- void setType( Type type ) { m_type = type; }
- void setName( const QString &name ) { m_name = name; }
- void setValue( const QString &value ) { m_value = value; }
- void setActive( bool active ) { m_active = active; }
+ void setType( Type type ) { m_type = type; }
+ void setName( const QString &name ) { m_name = name; }
+ void setValue( const QString &value ) { m_value = value; }
+ void setFeatures( const QString &features ) { m_features = features; }
+ void setActive( bool active ) { m_active = active; }
@@ -59,2 +62,3 @@ private:
QString m_value; // Value of item
+ QString m_features; // Comma-deliminated list of features this item supports
bool m_active; // Indicates whether item is currently active