ocarina/include/ban.h
Bryan Schumaker 258875bdb8 libsaria: Move header files out of include/libsaria/
Ocarina no longer has a header file subdirectory so there is no reason
to have a libsaria subdirectory anymore.  Putting header files directly
in the include/ directory is a bit simpler.

Signed-off-by: Bryan Schumaker <bjschuma@gmail.com>
2012-09-12 08:15:31 -04:00

18 lines
235 B
C++

#ifndef LIBSARIA_BAN_H
#define LIBSARIA_BAN_H
#include <track.h>
namespace libsaria
{
namespace ban
{
Playlist *get_banned_plist();
void track_banned(Track *);
void track_unbanned(Track *);
}
}
#endif /* LIBSARIA_BAN_H */