ocarina/include/group.h
Anna Schumaker 7b7414c755 group: Implement basic groups support
I only handle the "All Music", "Library" and "Banned" groups at the
moment but I'll eventually add in more features (in future versions).

Signed-off-by: Anna Schumaker <schumaker.anna@gmail.com>
2014-04-06 19:56:53 -04:00

22 lines
391 B
C++

/*
* Copyright 2013 (c) Anna Schumaker.
*/
#ifndef OCARINA_GROUP_H
#define OCARINA_GROUP_H
#include <list>
#include <set>
#include <string>
namespace group
{
void add(const std::string &, unsigned int);
void del(const std::string &, unsigned int);
void list(std::list<std::string> &);
const std::set<unsigned int> &get_tracks(const std::string &);
};
#endif /* OCARINA_GROUP_H */