summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/profileconfig.h
blob: f371eadf75ad92499f9e7bac4bcf74a05b6b3fe8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

#ifndef OPIE_PROFILE_CONFIG_H
#define OPIE_PROFILE_CONFIG_H

#include <qpe/config.h>
#include <qstringlist.h>

class ProfileConfig : public Config {
public:
    ProfileConfig( const QString& prof );
    ~ProfileConfig();
    QStringList groups()const;
    /**
     * return the items in the group
     */
    QMap<QString, QString> items(const QString& group)const;
    void clearGroup( const QString& );
    void clearAll();

};
#endif