#ifndef OPIE_PROFILE_CONFIG_H #define OPIE_PROFILE_CONFIG_H #include #include class ProfileConfig : public Config { public: ProfileConfig( const QString& prof ); ~ProfileConfig(); QStringList groups()const; /** * return the items in the group */ QMap items(const QString& group)const; void clearGroup( const QString& ); void clearAll(); }; #endif