blob: 1e413c08a6ce4e9727e2ee6d30776daa4a031d75 (
plain) (
tree)
|
|
#pragma once
#include "reader.h"
#include "writer.h"
template <bool>
struct TDefaultAhoCorasickG;
template <>
struct TDefaultAhoCorasickG<false> {
typedef TDefaultMappedAhoCorasick T;
};
template <>
struct TDefaultAhoCorasickG<true> {
typedef TDefaultAhoCorasickBuilder T;
};
|