draconisplusplus/include/rfl/toml/Parser.hpp
2024-05-31 22:59:00 -04:00

16 lines
303 B
C++

#ifndef RFL_TOML_PARSER_HPP_
#define RFL_TOML_PARSER_HPP_
#include "../parsing/Parser.hpp"
#include "Reader.hpp"
#include "Writer.hpp"
namespace rfl::toml {
template <class T, class ProcessorsType>
using Parser = parsing::Parser<Reader, Writer, T, ProcessorsType>;
} // namespace rfl::toml
#endif