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