mirror of
https://github.com/simdjson/simdjson
synced 2026-06-08 17:27:07 +00:00
18 lines
362 B
C++
18 lines
362 B
C++
// TODO Remove this -- deprecated API and files
|
|
|
|
#ifndef SIMDJSON_DOM_PARSEDJSON_H
|
|
#define SIMDJSON_DOM_PARSEDJSON_H
|
|
|
|
#include "simdjson/dom/document.h"
|
|
|
|
namespace simdjson {
|
|
|
|
/**
|
|
* @deprecated Use `dom::parser` instead.
|
|
*/
|
|
using ParsedJson [[deprecated("Use dom::parser instead")]] = dom::parser;
|
|
|
|
} // namespace simdjson
|
|
|
|
#endif // SIMDJSON_DOM_PARSEDJSON_H
|