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
|