You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
357 B
19 lines
357 B
#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_
|