concordia-library/concordia/anubis_searcher.cpp
rjawor dd8b27cc23 anubis searcher stub
Former-commit-id: fe520e255c918c889bdd421a363668b2ed76c675
2014-05-14 16:29:44 +02:00

22 lines
610 B
C++

#include "concordia/anubis_searcher.hpp"
AnubisSearcher::AnubisSearcher() {
}
AnubisSearcher::~AnubisSearcher() {
}
boost::ptr_vector<AnubisSearchResult> AnubisSearcher::anubisSearch(
boost::shared_ptr<std::vector<sauchar_t> > T,
boost::shared_ptr<std::vector<SUFFIX_MARKER_TYPE> > markers,
boost::shared_ptr<std::vector<saidx_t> > SA,
boost::shared_ptr<std::vector<INDEX_CHARACTER_TYPE> >)
throw(ConcordiaException) {
boost::ptr_vector<AnubisSearchResult> result;
return result;
}