#ifndef SETTINGSPAGEBASE_H
#define SETTINGSPAGEBASE_H
-#include <qwidget.h>
+#include <QtGui/QWidget>
/**
* @brief Base class for the settings pages of the Dolphin settings dialog.
* persistently store the settings.
*/
virtual void applySettings() = 0;
+
+ /**
+ * Must be implemented by a derived class to
+ * restored the settings to default values.
+ */
+ virtual void restoreDefaults() = 0;
};
#endif