ocarina/include/core/filter.h
Anna Schumaker 9ea0fd4f29 core: Update include file #ifndef guards
Signed-off-by: Anna Schumaker <Anna@OcarinaProject.net>
2014-06-21 09:49:07 -04:00

19 lines
359 B
C++

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