ForestHub SDK 0.1.0
C++14 LLM SDK for PC and embedded platforms
Loading...
Searching...
No Matches
json.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: AGPL-3.0-only
2// Copyright (c) 2026 ForestHub. All rights reserved.
3// For commercial licensing, visit https://github.com/ForestHubAI/fh-sdk
4
5#ifndef FORESTHUB_UTIL_JSON_HPP
6#define FORESTHUB_UTIL_JSON_HPP
7
16
17#ifdef abs
18#pragma push_macro("abs")
19#undef abs
20#define FORESTHUB_RESTORE_ABS_
21#endif
22
23#include <nlohmann/json.hpp> // IWYU pragma: export
24
25#ifdef FORESTHUB_RESTORE_ABS_
26#pragma pop_macro("abs")
27#undef FORESTHUB_RESTORE_ABS_
28#endif
29
30#endif // FORESTHUB_UTIL_JSON_HPP