ocarina/libsaria/index/index.h

15 lines
342 B
C
Raw Normal View History

#ifndef LIBSARIA_INDEX_INTERNAL_H
#define LIBSARIA_INDEX_INTERNAL_H
#include <map>
#include <set>
#include <string>
using namespace std;
extern map<string, set<sid_t> > artist_index;
extern map<string, set<sid_t> > album_index;
extern map<string, set<sid_t> > title_index;
extern set<sid_t> results;
#endif /* LIBSARIA_INDEX_INTERNAL_H */