~ubuntu-branches/ubuntu/maverick/vdr-plugin-mp3/maverick

« back to all changes in this revision

Viewing changes to data-mp3.h

  • Committer: Bazaar Package Importer
  • Author(s): Tobias Grimm
  • Date: 2010-03-28 15:09:21 UTC
  • mfrom: (2.1.6 sid)
  • Revision ID: james.westby@ubuntu.com-20100328150921-3kti802cqh0pe1hl
Tags: 0.10.2-3
* Build-depend on vdr-dev >= 1.6.0-16
* Minor debian/copyright update

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 * MP3/MPlayer plugin to VDR (C++)
3
3
 *
4
 
 * (C) 2001-2006 Stefan Huelswitt <s.huelswitt@gmx.de>
 
4
 * (C) 2001-2009 Stefan Huelswitt <s.huelswitt@gmx.de>
5
5
 *
6
6
 * This code is free software; you can redistribute it and/or
7
7
 * modify it under the terms of the GNU General Public License
32
32
class cSongInfo;
33
33
class cImageConvert;
34
34
 
35
 
extern const char *imagecache, *imageconv;
 
35
extern const char *imagecache, *imageconv, *def_usr_img;
36
36
extern const char *img_suff[], *excl_pl[], *excl_br[];
37
37
 
38
38
// ----------------------------------------------------------------
59
59
  cSong(cFileSource *Source, const char *Subdir, const char *Name);
60
60
  cSong(cSong *Song);
61
61
  ~cSong();
62
 
#if APIVERSNUM >= 10315
63
62
  virtual int Compare(const cListObject &ListObject) const;
64
 
#else
65
 
  virtual bool operator<(const cListObject &ListObject);
66
 
#endif
67
63
  bool Parse(char *s, const char *reldir) const;
68
64
  bool Save(FILE *f, const char *reldir) const;
69
65
  void Convert(void);
94
90
  ~cPlayList();
95
91
  virtual bool Load(void);
96
92
  virtual bool Save(void);
97
 
#if APIVERSNUM >= 10315
98
93
  virtual int Compare(const cListObject &ListObject) const;
99
 
#else
100
 
  virtual bool operator<(const cListObject &ListObject);
101
 
#endif
102
94
  //
103
95
  bool Rename(const char *newName);
104
96
  bool Delete(void);