summaryrefslogtreecommitdiffstats
path: root/src/vsession.h
diff options
context:
space:
mode:
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_*/