00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00046 #ifndef XSPF_TRACK_H
00047 #define XSPF_TRACK_H
00048
00049
00050 #include "XspfData.h"
00051
00052 namespace Xspf {
00053
00054
00055 class XspfTrackPrivate;
00056
00057
00061 class XspfTrack : public XspfData {
00062
00063 friend class XspfTrackPrivate;
00064
00065 private:
00067 XspfTrackPrivate * const d;
00068
00069
00070 public:
00074 XspfTrack();
00075
00081 XspfTrack(XspfTrack const & source);
00082
00088 XspfTrack & operator=(XspfTrack const & source);
00089
00093 ~XspfTrack();
00094
00104 void giveAlbum(XML_Char const * album, bool copy);
00105
00112 void giveAppendIdentifier(XML_Char const * identifier, bool copy);
00113
00120 void giveAppendLocation(XML_Char const * location, bool copy);
00121
00129 void lendAlbum(XML_Char const * album);
00130
00138 void lendAppendLocation(XML_Char const * location);
00139
00147 void lendAppendIdentifier(XML_Char const * identifier);
00148
00154 void setTrackNum(int trackNum);
00155
00162 void setDuration(int duration);
00163
00169 XML_Char * stealAlbum();
00170
00177 XML_Char * stealFirstIdentifier();
00178
00185 XML_Char * stealFirstLocation();
00186
00192 XML_Char const * getAlbum() const;
00193
00200 XML_Char const * getIdentifier(int index) const;
00201
00208 XML_Char const * getLocation(int index) const;
00209
00215 int getIdentifierCount() const;
00216
00222 int getLocationCount() const;
00223
00230 int getDuration() const;
00231
00237 int getTrackNum() const;
00238
00239 private:
00247 static void appendHelper(std::deque<std::pair<XML_Char const *, bool> *> * & container, XML_Char const * value, bool ownership);
00248
00255 static XML_Char * stealFirstHelper(std::deque<std::pair<XML_Char const *, bool> *> * & container);
00256
00265 static XML_Char const * getHelper(std::deque<std::pair<XML_Char const *, bool> *> * & container, int index);
00266
00267 };
00268
00269
00270 }
00271
00272 #endif // XSPF_TRACK_H