0ad/source/sound/CPlayList.h
janwas b755ddefda remove all author/modified by tags.
make include guards consistent.

This was SVN commit r5040.
2007-05-07 16:33:24 +00:00

23 lines
324 B
C++

#ifndef INCLUDED_CPLAYLIST
#define INCLUDED_CPLAYLIST
#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