17 lines
319 B
C++
17 lines
319 B
C++
#ifndef MARISA_GRIMOIRE_TRIE_H_
|
|
#define MARISA_GRIMOIRE_TRIE_H_
|
|
|
|
#include "marisa/grimoire/trie/state.h"
|
|
#include "marisa/grimoire/trie/louds-trie.h"
|
|
|
|
namespace marisa {
|
|
namespace grimoire {
|
|
|
|
using trie::State;
|
|
using trie::LoudsTrie;
|
|
|
|
} // namespace grimoire
|
|
} // namespace marisa
|
|
|
|
#endif // MARISA_GRIMOIRE_TRIE_H_
|