diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2015-06-23 18:58:12 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2015-06-23 18:58:12 +0000 |
| commit | af4b2444f18a4902d380313f9fc10b91e060692c (patch) | |
| tree | 3fdd44536be99e093408425c36456dfdaeacf5bf /src/qmmpui/playlistitem.h | |
| parent | 7b47bfa57bff12fa5350e128b316bdf27c977037 (diff) | |
| download | qmmp-af4b2444f18a4902d380313f9fc10b91e060692c.tar.gz qmmp-af4b2444f18a4902d380313f9fc10b91e060692c.tar.bz2 qmmp-af4b2444f18a4902d380313f9fc10b91e060692c.zip | |
added functions: PlayListItem::trackNumber() and
PlayListItem::setTrackNumber(int)
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@5183 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/qmmpui/playlistitem.h')
| -rw-r--r-- | src/qmmpui/playlistitem.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/qmmpui/playlistitem.h b/src/qmmpui/playlistitem.h index 344996890..33bbd5464 100644 --- a/src/qmmpui/playlistitem.h +++ b/src/qmmpui/playlistitem.h @@ -64,8 +64,13 @@ public: */ virtual bool isGroup() const = 0; + void setTrackNumber(int number); + + int trackNumber() const; + private: bool m_selected; + int m_number; }; #endif |
