blob: 87ad3863b3b98994f1bcc509b67e65b092a58f72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
bool MoveRename(const char *OldName,const char *NewName,cRecording *Recording,bool Move);
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>
{
};
|