ocarina/include/libsaria/queue.h
Bryan Schumaker 7a355d1434 libsaria: Remove the SourceModel class
Nothing has used it in a few months, so it can safely be removed.

Signed-off-by: Bryan Schumaker <bjschuma@gmail.com>
2012-02-19 17:17:25 -05:00

30 lines
417 B
C++

#ifndef LIBSARIA_QUEUE_H
#define LIBSARIA_QUEUE_H
#include <libsaria/track.h>
#include <list>
using namespace std;
namespace libsaria
{
namespace queue
{
namespace iter
{
void reset();
libsaria::Track *next();
bool end();
}
void add_ids(list<sid_t> &);
void rm_ids(list<sid_t> &);
unsigned int size();
string next_file();
void save();
void load();
}
}
#endif /* LIBSARIA_QUEUE_H */