ocarina/include/libsaria/path.h
Bryan Schumaker a944869093 libsaria: Clean out the Track class for re-implementation
This also removed the other `typedef sid_t` left in the header file.
I'll re-add in functions and variables as I need them, and hopefully
keep things working more efficiently.

Signed-off-by: Bryan Schumaker <bjschuma@gmail.com>
2012-04-07 10:01:16 -04:00

27 lines
410 B
C++

#ifndef LIBSARIA_PATH_H
#define LIBSARIA_PATH_H
#include <libsaria/track.h>
#include <string>
#include <list>
using namespace std;
#include <sys/types.h>
struct file
{
string name;
// sid_t d_sid;
};
string get_saria_dir();
void make_saria_dir();
bool exists(string);
void remove_file(string);
//sid_t lookup_songid(string &);
string open_pipe(string);
void close_pipes();
#endif /* LIBSARIA_PATH_H */