19 lines
357 B
C
19 lines
357 B
C
|
|
#ifndef MARISA_GRIMOIRE_IO_H_
|
||
|
|
#define MARISA_GRIMOIRE_IO_H_
|
||
|
|
|
||
|
|
#include "marisa/grimoire/io/mapper.h"
|
||
|
|
#include "marisa/grimoire/io/reader.h"
|
||
|
|
#include "marisa/grimoire/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_
|