repo.or.cz
/
personal-kdebase.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
not quite so much needs to be delayed to the init() function
[personal-kdebase.git]
/
workspace
/
kcontrol
/
screensaver
/
saverlist.h
blob
c6844540308bad49211d91a49c9d9ff870d96804
1
#ifndef SAVERLIST_H
2
#define SAVERLIST_H
3
4
#include <QList>
5
#include <Q3PtrCollection>
6
#include
"saverconfig.h"
7
8
class
SaverList
:
public
QList
<
SaverConfig
*>
9
{
10
public
:
11
virtual
~
SaverList
(){}
12
protected
:
13
virtual
int
compareItems
(
Q3PtrCollection
::
Item item1
,
Q3PtrCollection
::
Item item2
);
14
};
15
16
#endif