AGX Dynamics 2.41.0.0
Loading...
Searching...
No Matches
JsonWriter.h
Go to the documentation of this file.
1/*
2Copyright 2007-2025. Algoryx Simulation AB.
3
4All AGX source code, intellectual property, documentation, sample code,
5tutorials, scene files and technical white papers, are copyrighted, proprietary
6and confidential material of Algoryx Simulation AB. You may not download, read,
7store, distribute, publish, copy or otherwise disseminate, use or expose this
8material unless having a written signed agreement with Algoryx Simulation AB, or having been
9advised so by Algoryx Simulation AB for a time limited evaluation, or having purchased a
10valid commercial license from Algoryx Simulation AB.
11
12Algoryx Simulation AB disclaims all responsibilities for loss or damage caused
13from using this software, unless otherwise stated in written agreements with
14Algoryx Simulation AB.
15*/
16
17#ifndef AGX_JSONWRITER_H
18#define AGX_JSONWRITER_H
19
20#include <agxData/Value.h>
21#include <agxData/Buffer.h>
22#include <ostream>
23#include <json/value.h>
24
25namespace agxData
26{
27 AGXCORE_EXPORT void writeJson(agxJson::Value& result, const agxData::Value *value);
28 AGXCORE_EXPORT void writeJson(agxJson::Value& result, const agxData::Buffer *buffer);
29}
30
31#endif //AGX_JSONWRITER_H
#define AGXCORE_EXPORT
Abstract representation of a data buffer.
Definition: Buffer.h:56
Abstract representation of a value.
Definition: Value.h:49
Contains classes for low level data storage for AGX.
Definition: Container.h:23
AGXCORE_EXPORT void writeJson(agxJson::Value &result, const agxData::Value *value)