blob: 215154da9a0d4e029de76786964d449687ac614f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
class myRecListItem:public cListObject
{
private:
const char *filename;
mutable char *sortbuffer;
static char *StripEpisodeName(char *s);
char *SortName()const;
public:
myRecListItem(cRecording *Recording);
~myRecListItem();
virtual int Compare(const cListObject &ListObject)const;
cRecording *recording;
};
class myRecList:public cList<myRecListItem>
{
};
|