| 1 | // TODO Remove this -- deprecated API and files |
|---|---|
| 2 | |
| 3 | #ifndef SIMDJSON_DOM_PARSEDJSON_H |
| 4 | #define SIMDJSON_DOM_PARSEDJSON_H |
| 5 | |
| 6 | #include "simdjson/dom/document.h" |
| 7 | |
| 8 | namespace simdjson { |
| 9 | |
| 10 | /** |
| 11 | * @deprecated Use `dom::parser` instead. |
| 12 | */ |
| 13 | using ParsedJson [[deprecated("Use dom::parser instead")]] = dom::parser; |
| 14 | |
| 15 | } // namespace simdjson |
| 16 | |
| 17 | #endif // SIMDJSON_DOM_PARSEDJSON_H |
| 18 |