diff session.h @ 4:220e5619bf87

Profiles selection now fill contact list + new Jid class
author Goffi <goffi@goffi.org>
date Thu, 11 Aug 2011 00:02:25 +0200
parents fee291c8d42a
children
line wrap: on
line diff
--- a/session.h	Mon Aug 08 10:59:34 2011 +0200
+++ b/session.h	Thu Aug 11 00:02:25 2011 +0200
@@ -19,16 +19,20 @@
 #ifndef SESSION_H
 #define SESSION_H
 
+#include <QtGui>
+
 class Session
 {
 public:
     static Session* getSession();
+    QList<QString>& getProfiles();
 
 protected:
     Session();
 
 private:
     static Session* _instance;
+    QList<QString> m_profiles;
 };