2020-03-03 06:23:19 +08:00
|
|
|
#ifndef SIMDJSON_H
|
|
|
|
#define SIMDJSON_H
|
|
|
|
|
2020-03-30 07:57:14 +08:00
|
|
|
/**
|
|
|
|
* @mainpage
|
|
|
|
*
|
|
|
|
* Check the [README.md](https://github.com/lemire/simdjson/blob/master/README.md#simdjson--parsing-gigabytes-of-json-per-second).
|
|
|
|
*/
|
|
|
|
|
2020-03-03 06:23:19 +08:00
|
|
|
#include "simdjson/compiler_check.h"
|
2020-04-27 20:59:32 +08:00
|
|
|
#include "simdjson/common_defs.h"
|
|
|
|
|
|
|
|
SIMDJSON_PUSH_DISABLE_WARNINGS
|
2020-05-05 02:37:28 +08:00
|
|
|
SIMDJSON_DISABLE_UNDESIRED_WARNINGS
|
2020-03-03 06:23:19 +08:00
|
|
|
|
|
|
|
// Public API
|
|
|
|
#include "simdjson/simdjson_version.h"
|
|
|
|
#include "simdjson/error.h"
|
|
|
|
#include "simdjson/padded_string.h"
|
|
|
|
#include "simdjson/implementation.h"
|
2020-05-14 10:15:33 +08:00
|
|
|
#include "simdjson/dom/array.h"
|
|
|
|
#include "simdjson/dom/document_stream.h"
|
|
|
|
#include "simdjson/dom/document.h"
|
|
|
|
#include "simdjson/dom/element.h"
|
|
|
|
#include "simdjson/dom/object.h"
|
|
|
|
#include "simdjson/dom/parser.h"
|
|
|
|
|
|
|
|
// Deprecated API
|
|
|
|
#include "simdjson/dom/jsonparser.h"
|
|
|
|
#include "simdjson/dom/parsedjson.h"
|
|
|
|
#include "simdjson/dom/parsedjson_iterator.h"
|
|
|
|
|
|
|
|
// Inline functions
|
|
|
|
#include "simdjson/inline/array.h"
|
2020-03-05 00:42:29 +08:00
|
|
|
#include "simdjson/inline/document_stream.h"
|
2020-05-14 10:15:33 +08:00
|
|
|
#include "simdjson/inline/document.h"
|
|
|
|
#include "simdjson/inline/element.h"
|
2020-03-07 03:55:10 +08:00
|
|
|
#include "simdjson/inline/error.h"
|
2020-05-14 10:15:33 +08:00
|
|
|
#include "simdjson/inline/object.h"
|
2020-03-07 10:14:34 +08:00
|
|
|
#include "simdjson/inline/padded_string.h"
|
2020-03-26 03:03:03 +08:00
|
|
|
#include "simdjson/inline/parsedjson_iterator.h"
|
2020-05-14 10:15:33 +08:00
|
|
|
#include "simdjson/inline/parser.h"
|
|
|
|
#include "simdjson/inline/tape_ref.h"
|
2020-03-03 06:23:19 +08:00
|
|
|
|
2020-04-27 20:59:32 +08:00
|
|
|
SIMDJSON_POP_DISABLE_WARNINGS
|
|
|
|
|
2020-03-03 06:23:19 +08:00
|
|
|
#endif // SIMDJSON_H
|