10Duke Enterprise C++ Client
Loading...
Searching...
No Matches
SerializeStateToJSON.h
1#ifndef TENDUKE_EE_SERIALIZESTATETOJSON_H
2#define TENDUKE_EE_SERIALIZESTATETOJSON_H
3
4#include "./ClientState.h"
5
6#include <string>
7
8namespace tenduke { namespace ee {
9
15public:
16 virtual ~SerializeStateToJSON() = default;
17
23 std::string serialize(const ::tenduke::ee::ClientState &state) const;
24};
25
26}}
27
28#endif //TENDUKE_EE_SERIALIZESTATETOJSON_H
Serializes client state to JSON.
Definition SerializeStateToJSON.h:14
std::string serialize(const ::tenduke::ee::ClientState &state) const
Serializes the state.
Definition SerializeStateToJSON.cpp:9
Root for classes, functions and globals of 10Duke C++ Client.
Definition APIRequest.h:4