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"
|
|
|
|
|
|
|
|
// Public API
|
|
|
|
#include "simdjson/simdjson_version.h"
|
|
|
|
#include "simdjson/error.h"
|
|
|
|
#include "simdjson/padded_string.h"
|
|
|
|
#include "simdjson/implementation.h"
|
|
|
|
#include "simdjson/document.h"
|
2020-03-05 00:42:29 +08:00
|
|
|
#include "simdjson/document_stream.h"
|
2020-03-03 06:23:19 +08:00
|
|
|
|
2020-04-11 07:37:00 +08:00
|
|
|
// // Deprecated API
|
2020-03-03 06:23:19 +08:00
|
|
|
#include "simdjson/jsonparser.h"
|
|
|
|
#include "simdjson/parsedjson.h"
|
2020-03-26 03:03:03 +08:00
|
|
|
#include "simdjson/parsedjson_iterator.h"
|
2020-03-03 06:23:19 +08:00
|
|
|
|
2020-04-11 07:37:00 +08:00
|
|
|
// // Inline functions
|
2020-03-03 06:23:19 +08:00
|
|
|
#include "simdjson/inline/document.h"
|
2020-03-05 00:42:29 +08:00
|
|
|
#include "simdjson/inline/document_stream.h"
|
2020-03-07 03:55:10 +08:00
|
|
|
#include "simdjson/inline/error.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-03-03 06:23:19 +08:00
|
|
|
|
|
|
|
#endif // SIMDJSON_H
|