File: Parser.hpp

package info (click to toggle)
reflect-cpp 0.21.0%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,128 kB
  • sloc: cpp: 50,336; python: 139; makefile: 30; sh: 3
file content (36 lines) | stat: -rw-r--r-- 1,026 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#ifndef RFL_PARSING_PARSER_HPP_
#define RFL_PARSING_PARSER_HPP_

#include "Parser_array.hpp"
#include "Parser_base.hpp"
#include "Parser_box.hpp"
#include "Parser_bytestring.hpp"
#include "Parser_c_array.hpp"
#include "Parser_default.hpp"
#include "Parser_duration.hpp"
#include "Parser_filepath.hpp"
#include "Parser_map_like.hpp"
#include "Parser_named_tuple.hpp"
#include "Parser_optional.hpp"
#include "Parser_pair.hpp"
#include "Parser_ptr.hpp"
#include "Parser_ref.hpp"
#include "Parser_reference_wrapper.hpp"
#include "Parser_rename.hpp"
#include "Parser_result.hpp"
#include "Parser_rfl_array.hpp"
#include "Parser_rfl_tuple.hpp"
#include "Parser_rfl_variant.hpp"
#include "Parser_shared_ptr.hpp"
#include "Parser_skip.hpp"
#include "Parser_span.hpp"
#include "Parser_string_view.hpp"
#include "Parser_tagged_union.hpp"
#include "Parser_tuple.hpp"
#include "Parser_unique_ptr.hpp"
#include "Parser_variant.hpp"
#include "Parser_vector_like.hpp"
#include "Parser_vectorstring.hpp"
#include "Parser_wstring.hpp"

#endif