JsonConverter.h
Go to the documentation of this file.
1#pragma once
2
3// Base Class
4#include "../Converter.h"
5
6// Simox
7#include <SimoxUtility/json.h>
8
10{
12 {
13 public:
14 JsonConverter() : ObjectConverter("dict", ".json")
15 {
16 }
17
18 std::pair<std::vector<unsigned char>, std::string>
20 aron::type::ObjectPtr convert(const std::vector<unsigned char>& data,
21 const std::string&) final;
22 };
23} // namespace armarx::armem::server::ltm::processor::converter::type::object
ObjectConverter(const std::string &id, const std::string &s)
Definition Converter.h:19
std::pair< std::vector< unsigned char >, std::string > convert(const aron::type::ObjectPtr &data) final
std::shared_ptr< Object > ObjectPtr
Definition Object.h:36