forked from getml/reflect-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathParser.hpp
More file actions
45 lines (43 loc) · 1.28 KB
/
Parser.hpp
File metadata and controls
45 lines (43 loc) · 1.28 KB
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
37
38
39
40
41
42
43
44
45
#ifndef RFL_PARSING_PARSER_HPP_
#define RFL_PARSING_PARSER_HPP_
#include "Parser_array.hpp"
#include "Parser_atomic.hpp"
#include "Parser_atomic_flag.hpp"
#include "Parser_base.hpp"
#include "Parser_basic_type.hpp"
#include "Parser_box.hpp"
#include "Parser_bytestring.hpp"
#include "Parser_c_array.hpp"
#include "Parser_commented.hpp"
#include "Parser_default.hpp"
#include "Parser_default_val.hpp"
#include "Parser_duration.hpp"
#include "Parser_enum.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_positional.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_short.hpp"
#include "Parser_skip.hpp"
#include "Parser_span.hpp"
#include "Parser_string_view.hpp"
#include "Parser_tagged_union.hpp"
#include "Parser_time_point.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