1 | #ifndef SIMDJSON_BASE_H |
---|---|
2 | #define SIMDJSON_BASE_H |
3 | |
4 | #include "simdjson/compiler_check.h" |
5 | #include "simdjson/common_defs.h" |
6 | #include "simdjson/portability.h" |
7 | |
8 | SIMDJSON_PUSH_DISABLE_WARNINGS |
9 | SIMDJSON_DISABLE_UNDESIRED_WARNINGS |
10 | |
11 | // Public API |
12 | #include "simdjson/simdjson_version.h" |
13 | #include "simdjson/error.h" |
14 | #include "simdjson/minify.h" |
15 | #include "simdjson/padded_string.h" |
16 | #include "simdjson/padded_string_view.h" |
17 | #include "simdjson/implementation.h" |
18 | |
19 | // Inline functions |
20 | #include "simdjson/error-inl.h" |
21 | #include "simdjson/padded_string-inl.h" |
22 | #include "simdjson/padded_string_view-inl.h" |
23 | |
24 | SIMDJSON_POP_DISABLE_WARNINGS |
25 | |
26 | #endif // SIMDJSON_BASE_H |