#ifndef CPLAYLIST_H #define CPLAYLIST_H #include #include #include class CPlayList { public: CPlayList(void); CPlayList(char *file); ~CPlayList(void); void load(char *file); void list(); void add(std::string name); private: std::vector tracks; }; #endif