diff options
| author | MountainMan <MountainMan@e10066b5-e1e2-0310-b819-94efdf66514b> | 2004-02-09 19:27:52 +0000 |
|---|---|---|
| committer | MountainMan <MountainMan@e10066b5-e1e2-0310-b819-94efdf66514b> | 2004-02-09 19:27:52 +0000 |
| commit | 5ad0ef849611a4df07d001fe633fa7207a66fc5d (patch) | |
| tree | 8e2938d432ba135563c95c560e5843a412669ec5 /mg_content_interface.h | |
| parent | 948ba08fb8fea82e6614af14d3038e6bc98fcc0f (diff) | |
| download | vdr-plugin-muggle-5ad0ef849611a4df07d001fe633fa7207a66fc5d.tar.gz vdr-plugin-muggle-5ad0ef849611a4df07d001fe633fa7207a66fc5d.tar.bz2 | |
filter set implemented
git-svn-id: https://vdr-muggle.svn.sourceforge.net/svnroot/vdr-muggle/trunk/muggle-plugin@31 e10066b5-e1e2-0310-b819-94efdf66514b
Diffstat (limited to 'mg_content_interface.h')
| -rwxr-xr-x | mg_content_interface.h | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/mg_content_interface.h b/mg_content_interface.h index 1c210d1..b7bc7a3 100755 --- a/mg_content_interface.h +++ b/mg_content_interface.h @@ -3,8 +3,8 @@ * \brief Data Objects for content (e.g. mp3 files, movies) * for the vdr muggle plugindatabase ******************************************************************** - * \version $Revision: 1.2 $ - * \date $Date: 2004/02/02 22:48:04 $ + * \version $Revision: 1.3 $ + * \date $Date: 2004/02/09 19:27:52 $ * \author Ralf Klueber, Lars von Wedel, Andreas Kellner * \author file owner: $Author: MountainMan $ * @@ -28,6 +28,7 @@ #include <mysql/mysql.h> #define ILLEGAL_ID -1 +class mgFilter; /*! ******************************************************************* @@ -90,6 +91,9 @@ class mgContentItem virtual std::string getDescription()// return a short textual description {return "";} + virtual std::vector<mgFilter*> *getTrackInfo(){return NULL;} + virtual bool updateTrackInfo(std::vector<mgFilter*>*){return false;} + virtual std::string getGenre(){return "";} virtual int getRating() { @@ -212,6 +216,7 @@ public: virtual ~mgSelectionTreeNode(); // compute children on the fly + virtual bool isLeafNode()=0; virtual bool expand()=0; virtual void collapse(); // removes all children (recursively) @@ -237,11 +242,14 @@ public: // Note: This function allocates memory for the vector and for all elements of the vector // The calling function is in charge of releasing this memory virtual std::vector<mgContentItem*>* getTracks()=0; - + virtual mgContentItem* getSingleTrack()=0; }; /* -------------------- begin CVS log --------------------------------- * $Log: mg_content_interface.h,v $ + * Revision 1.3 2004/02/09 19:27:52 MountainMan + * filter set implemented + * * Revision 1.2 2004/02/02 22:48:04 MountainMan * added CVS $Log * |
