1
0
forked from 0ad/0ad
0ad/source/sound/CPlayList.h
janwas 6539cfc935 Playlist now uses VFS.
This was SVN commit r1504.
2004-12-15 14:25:09 +00:00

23 lines
310 B
C++
Executable File

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