#ifndef OPIE_CONFIG_DIALOG_H #define OPIE_CONFIG_DIALOG_H #include #include "configurebase.h" #include "profile.h" class ConfigDialog : public ConfigureBase { Q_OBJECT public: ConfigDialog( const Profile::ValueList&, QWidget* parent = 0l); ~ConfigDialog(); Profile::ValueList list()const; protected slots: void slotRemove(); void slotEdit(); void slotAdd(); }; #endif