blob: 970c09f0eafac57ae7f12f5dd5ceee22db2f3bb2 [file] [log] [blame]
#ifndef MARISA_GRIMOIRE_ALGORITHM_H_
#define MARISA_GRIMOIRE_ALGORITHM_H_
#include "marisa/grimoire/algorithm/sort.h"
namespace marisa {
namespace grimoire {
class Algorithm {
public:
Algorithm() {}
template <typename Iterator>
std::size_t sort(Iterator begin, Iterator end) const {
return algorithm::sort(begin, end);
}
private:
Algorithm(const Algorithm &);
Algorithm &operator=(const Algorithm &);
};
} // namespace grimoire
} // namespace marisa
#endif // MARISA_GRIMOIRE_ALGORITHM_H_