summaryrefslogtreecommitdiff
path: root/mg_content.h
diff options
context:
space:
mode:
authorwr61 <wr61@e10066b5-e1e2-0310-b819-94efdf66514b>2005-03-22 08:07:59 +0000
committerwr61 <wr61@e10066b5-e1e2-0310-b819-94efdf66514b>2005-03-22 08:07:59 +0000
commit6f968c8997348410c1adb259e6ea0f6a14f3f083 (patch)
treee2208de212231b6a959b979441da106bbfdb8b49 /mg_content.h
parent1ab4f0336fbde0a5395b344b5b7b2ca763698004 (diff)
downloadvdr-plugin-muggle-release/0.1.5-wr.tar.gz
vdr-plugin-muggle-release/0.1.5-wr.tar.bz2
fix compilation for 2.95release/0.1.5-wr
git-svn-id: https://vdr-muggle.svn.sourceforge.net/svnroot/vdr-muggle/branches/0.1.5-wr@588 e10066b5-e1e2-0310-b819-94efdf66514b
Diffstat (limited to 'mg_content.h')
-rw-r--r--mg_content.h23
1 files changed, 8 insertions, 15 deletions
diff --git a/mg_content.h b/mg_content.h
index ee97745..4a64c29 100644
--- a/mg_content.h
+++ b/mg_content.h
@@ -34,33 +34,26 @@ class mgContentItem
public:
mgContentItem ();
+//! \brief returns the corresponding mgSelItem
mgSelItem* getKeyItem(mgKeyTypes kt);
- //! \brief copy constructor
+//! \brief copy constructor
mgContentItem(const mgContentItem* c);
- //! \brief construct an item from an SQL row
+//! \brief construct an item from an SQL row
mgContentItem (const mgSelection* sel, const MYSQL_ROW row);
+
//! \brief returns track id
- long getTrackid () const
- {
- return m_trackid;
- }
+ long getTrackid () const;
-//! \brief returns title
- string getTitle () const
- {
- return m_title;
- }
+//! \brief returns the track title
+ string getTitle () const;
//! \brief returns filename
string getSourceFile (bool AbsolutePath=true) const;
//! \brief returns artist
- string getArtist () const
- {
- return m_artist;
- }
+ string getArtist () const;
//! \brief returns the name of the album
string getAlbum () const;