summaryrefslogtreecommitdiffstats
path: root/src/session.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/session.h')
-rw-r--r--src/session.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/session.h b/src/session.h
index 2033ba7..b031991 100644
--- a/src/session.h
+++ b/src/session.h
@@ -14,7 +14,12 @@ class Session {
virtual QString description() const = 0;
virtual QString icon() const = 0;
virtual bool run() const = 0;
+ virtual int type() const = 0;
virtual bool operator<(const Session& s) const = 0;
+
+ const static int XSESSION = 0;
+ const static int VSESSION = 1;
+
};
#endif /*VMCHOOSER_SESSION_H_*/