summaryrefslogtreecommitdiffstats
path: root/src/vsession.h
diff options
context:
space:
mode:
authorNils Schwabe2014-03-21 15:37:45 +0100
committerNils Schwabe2014-03-21 15:37:45 +0100
commitdb6e2bb254328386603701c6b8edba9fa6623d7f (patch)
tree9b529e9fb0a89736dc53d027814f268b37ee26fd /src/vsession.h
parent- added tab view (diff)
downloadvmchooser2-db6e2bb254328386603701c6b8edba9fa6623d7f.tar.gz
vmchooser2-db6e2bb254328386603701c6b8edba9fa6623d7f.tar.xz
vmchooser2-db6e2bb254328386603701c6b8edba9fa6623d7f.zip
- display the keywords in the desciption box
Diffstat (limited to 'src/vsession.h')
-rw-r--r--src/vsession.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/vsession.h b/src/vsession.h
index 3afcd2b..50a51f7 100644
--- a/src/vsession.h
+++ b/src/vsession.h
@@ -41,6 +41,7 @@ class VSession : public Session {
QString getAttribute(const QString& nodeName,
const QString& attribute = "param") const;
+ QList<QString> keywords() const;
QString getNodeText(const QString& nodeName) const;
void addNodeWithAttribute(const QString& nodeName,
@@ -65,10 +66,13 @@ class VSession : public Session {
static void addSessionsAfterDownload(QNetworkReply* reply);
private:
+ QList<QString> keywords_;
QDomDocument doc_;
QString baseDirPath_;
QProcess *_process;
+
+ void readKeywords();
};
#endif /*VMCHOOSER_VSESSION_H_*/