blob: 4de0110dbbb501c500bba8e042b59d8fadfe0448 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#pragma once
#ifndef MARISA_GRIMOIRE_IO_H_
#define MARISA_GRIMOIRE_IO_H_
#include "io/mapper.h"
#include "io/reader.h"
#include "io/writer.h"
namespace marisa {
namespace grimoire {
using io::Mapper;
using io::Reader;
using io::Writer;
} // namespace grimoire
} // namespace marisa
#endif // MARISA_GRIMOIRE_IO_H_
|