diff options
Diffstat (limited to 'tools.h')
-rw-r--r-- | tools.h | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -1 +1,19 @@ bool MoveVideoFile(cRecording *Recording,char *NewName); + +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> +{ +}; |