/* * Copyright 2013 (c) Anna Schumaker. */ #ifndef OCARINA_FILTER_H #define OCARINA_FILTER_H #include #include namespace filter { void add(const std::string &, unsigned int); void search(const std::string &, std::set &); std::string to_lowercase(const std::string &); void print_cache_stats(); }; #endif /* OCARINA_FILTER_H */