2024-05-31 22:59:00 -04:00
|
|
|
#ifndef RFL_PARSING_PARSER_BASE_HPP_
|
|
|
|
#define RFL_PARSING_PARSER_BASE_HPP_
|
|
|
|
|
|
|
|
#include "AreReaderAndWriter.hpp"
|
|
|
|
|
|
|
|
namespace rfl {
|
2024-06-08 14:10:59 -04:00
|
|
|
namespace parsing {
|
2024-05-31 22:59:00 -04:00
|
|
|
|
2024-06-08 14:10:59 -04:00
|
|
|
template <class R, class W, class T, class ProcessorsType>
|
|
|
|
requires AreReaderAndWriter<R, W, T>
|
|
|
|
struct Parser;
|
2024-05-31 22:59:00 -04:00
|
|
|
|
2024-06-08 14:10:59 -04:00
|
|
|
} // namespace parsing
|
|
|
|
} // namespace rfl
|
2024-05-31 22:59:00 -04:00
|
|
|
|
|
|
|
#endif
|