18 lines
321 B
C++
18 lines
321 B
C++
#ifndef RFL_YAML_PARSER_HPP_
|
|
#define RFL_YAML_PARSER_HPP_
|
|
|
|
#include "../parsing/Parser.hpp"
|
|
#include "Reader.hpp"
|
|
#include "Writer.hpp"
|
|
|
|
namespace rfl {
|
|
namespace yaml {
|
|
|
|
template <class T, class ProcessorsType>
|
|
using Parser = parsing::Parser<Reader, Writer, T, ProcessorsType>;
|
|
|
|
}
|
|
} // namespace rfl
|
|
|
|
#endif
|