summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/profilemanager.h
blob: d4d0fd0d736b111ebf99e4275def43557c885222 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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