to_from_json.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <SimoxUtility/json/json.hpp>
4 
5 #include "../VoxelGridStructure.h"
6 
7 
8 namespace visionx::voxelgrid
9 {
10 
11  void to_json(nlohmann::json& json, const VoxelGridStructure& structure);
12  void from_json(const nlohmann::json& json, VoxelGridStructure& structure);
13 
14 }
visionx::VoxelGridStructure
voxelgrid::VoxelGridStructure VoxelGridStructure
Definition: VoxelGridCore.h:35
visionx::voxelgrid::to_json
void to_json(nlohmann::json &json, const VoxelGridStructure &structure)
Definition: to_from_json.cpp:10
visionx::voxelgrid
Definition: exceptions.cpp:8
visionx::voxelgrid::from_json
void from_json(const nlohmann::json &json, VoxelGridStructure &structure)
Definition: to_from_json.cpp:18