summaryrefslogtreecommitdiffstats
path: root/src/vsession.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/vsession.h')
-rw-r--r--src/vsession.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/vsession.h b/src/vsession.h
index 2ded3ae..bd0f7a2 100644
--- a/src/vsession.h
+++ b/src/vsession.h
@@ -5,7 +5,6 @@
#include <QList>
#include <QDomDocument>
#include <QDir>
-#include <QProcess>
#include "session.h"
#include "httpxmldownloader.h"
@@ -17,7 +16,7 @@ enum ImgType {
class VSession : public Session {
public:
- bool init(const QString& xml, const QString& baseDirPath);
+ bool init(const QDomElement& xml);
ImgType imgtype() const;
bool isActive() const;
@@ -79,8 +78,6 @@ class VSession : public Session {
const QString& value,
const QString& attribute = "param",
bool replace = true);
- void addUserAndHostname();
- void mergePoolXml();
QString toXml() const;
@@ -97,11 +94,10 @@ class VSession : public Session {
private:
QList<QString> keywords_;
QDomDocument doc_;
- QString baseDirPath_;
-
- QProcess *_process;
+ QDomElement eintrag_;
void readKeywords();
+
};
#endif /*VMCHOOSER_VSESSION_H_*/