diff options
Diffstat (limited to 'kcontrol/screensaver/saverlist.h')
-rw-r--r-- | kcontrol/screensaver/saverlist.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/kcontrol/screensaver/saverlist.h b/kcontrol/screensaver/saverlist.h new file mode 100644 index 000000000..e6f36be18 --- /dev/null +++ b/kcontrol/screensaver/saverlist.h @@ -0,0 +1,14 @@ +#ifndef SAVERLIST_H +#define SAVERLIST_H + +#include <qptrlist.h> + +#include "saverconfig.h" + +class SaverList : public QPtrList<SaverConfig> +{ +protected: + virtual int compareItems(QPtrCollection::Item item1, QPtrCollection::Item item2); +}; + +#endif |