1
0
forked from 0ad/0ad
0ad/source/sound/CPlayList.h

23 lines
306 B
C
Raw Normal View History

2004-07-21 04:04:20 +02:00
#ifndef CPLAYLIST_H
#define CPLAYLIST_H
#include <vector>
#include <string>
#include <fstream>
class CPlayList
{
public:
CPlayList(void);
CPlayList(char *file);
~CPlayList(void);
void load(char *file);
void list();
void add(std::string name);
private:
std::vector<std::string> tracks;
};
#endif