draconisplusplus/include/rfl/yaml/Parser.hpp

18 lines
321 B
C++
Raw Normal View History

2024-06-05 19:04:53 -04:00
#ifndef RFL_YAML_PARSER_HPP_
#define RFL_YAML_PARSER_HPP_
#include "../parsing/Parser.hpp"
#include "Reader.hpp"
#include "Writer.hpp"
namespace rfl {
2024-06-08 14:10:59 -04:00
namespace yaml {
2024-06-05 19:04:53 -04:00
2024-06-08 14:10:59 -04:00
template <class T, class ProcessorsType>
using Parser = parsing::Parser<Reader, Writer, T, ProcessorsType>;
2024-06-05 19:04:53 -04:00
2024-06-08 14:10:59 -04:00
}
} // namespace rfl
2024-06-05 19:04:53 -04:00
#endif