1
0
forked from 0ad/0ad
0ad/source/sound/CPlayList.h
kezz ec978d968d no message
This was SVN commit r789.
2004-07-21 02:04:20 +00:00

22 lines
305 B
C++
Executable File

#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