summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/profilemanager.h
authorzecke <zecke>2002-09-28 18:29:02 (UTC)
committer zecke <zecke>2002-09-28 18:29:02 (UTC)
commitbc88219d0a9cf935d90c88fe75e238e86c675937 (patch) (unidiff)
tree0121d1d3d881cf69948f3faf420a71d894dd6832 /noncore/apps/opie-console/profilemanager.h
parent18d575d0ee47a0700091de81bc3e8c54be4eae18 (diff)
downloadopie-bc88219d0a9cf935d90c88fe75e238e86c675937.zip
opie-bc88219d0a9cf935d90c88fe75e238e86c675937.tar.gz
opie-bc88219d0a9cf935d90c88fe75e238e86c675937.tar.bz2
io_layer take Profile instead of Config
Profile added including some Config like stuff io_serial getBaud -> baud a default for gcc3 later tabdwidget will be our central widget profileconfig I needed groups() and clearAll that's pretty much it
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 @@
1#ifndef OPIE_PROFILE_MANAGER_H
2#define OPIE_PROFILE_MANAGER_H
3
4#include <qlist.h>
5
6#include "session.h"
7#include "profile.h"
8
9class MetaFactory;
10class ConfigWidget;
11class ProfileManager {
12public:
13 ProfileManager(MetaFactory*);
14 ~ProfileManager();
15
16 void load();
17 Profile::ValueList all()const;
18 void clear();
19 /**
20 * also replaces the item
21 */
22 void add( const Profile& prof );
23 void remove( const Profile& prof );
24 Session* fromProfile( const Profile& );
25 void save();
26private:
27 MetaFactory* m_fact;
28 Profile::ValueList m_list;
29};
30#endif