summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/profilemanager.h
Side-by-side diff
Diffstat (limited to 'noncore/apps/opie-console/profilemanager.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/profilemanager.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/noncore/apps/opie-console/profilemanager.h b/noncore/apps/opie-console/profilemanager.h
new file mode 100644
index 0000000..d4d0fd0
--- a/dev/null
+++ b/noncore/apps/opie-console/profilemanager.h
@@ -0,0 +1,30 @@
+#ifndef OPIE_PROFILE_MANAGER_H
+#define OPIE_PROFILE_MANAGER_H
+
+#include <qlist.h>
+
+#include "session.h"
+#include "profile.h"
+
+class MetaFactory;
+class ConfigWidget;
+class ProfileManager {
+public:
+ ProfileManager(MetaFactory*);
+ ~ProfileManager();
+
+ void load();
+ Profile::ValueList all()const;
+ void clear();
+ /**
+ * also replaces the item
+ */
+ void add( const Profile& prof );
+ void remove( const Profile& prof );
+ Session* fromProfile( const Profile& );
+ void save();
+private:
+ MetaFactory* m_fact;
+ Profile::ValueList m_list;
+};
+#endif