Just as a relaxing sunday evening project, try to create a simple, alternate playlist...
[amarok.git] / src / playlist / PlaylistItem.h
blob99577f5958606a8a968004a9ecba56150f4bd040
1 /***************************************************************************
2 * copyright : (C) 2007 Ian Monroe <ian@monroe.nu> *
3 * *
4 * This program is free software; you can redistribute it and/or modify *
5 * it under the terms of the GNU General Public License version 2 *
6 * as published by the Free Software Foundation. *
7 ***************************************************************************/
9 #ifndef AMAROKPLAYLISTITEM_H
10 #define AMAROKPLAYLISTITEM_H
12 #include "meta/meta.h"
14 namespace Playlist {
16 class Item
18 public:
19 Item() { }
20 Item( Meta::TrackPtr track );
21 ~Item();
22 Meta::TrackPtr track() const { return m_track; }
24 private:
25 Meta::TrackPtr m_track;
30 Q_DECLARE_METATYPE( Playlist::Item* )
32 #endif