A bug was discovered in glaze which prevented valid toml output. We have switched to toml++ and reflect-cpp. The interface has remained the same so this should not break any code
18 lines
311 B
C++
18 lines
311 B
C++
#ifndef GENERIC_PARSER_HPP_
|
|
#define GENERIC_PARSER_HPP_
|
|
|
|
#include "../parsing/Parser.hpp"
|
|
#include "Reader.hpp"
|
|
#include "Writer.hpp"
|
|
|
|
namespace rfl {
|
|
namespace generic {
|
|
|
|
template <class T, class ProcessorsType>
|
|
using Parser = parsing::Parser<Reader, Writer, T, ProcessorsType>;
|
|
|
|
}
|
|
} // namespace rfl
|
|
|
|
#endif
|