summaryrefslogtreecommitdiff
path: root/tools.h
blob: 527891b5a400ca01fefe88d94d70966518273a73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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>
{
};