retdec
tool_info.h
Go to the documentation of this file.
1 
7 #ifndef RETDEC_SERDES_TOOL_INFO_H
8 #define RETDEC_SERDES_TOOL_INFO_H
9 
10 #include <rapidjson/document.h>
11 
12 namespace retdec {
13 
14 namespace common {
15 class ToolInfo;
16 } // namespace common
17 
18 namespace serdes {
19 
20 template <typename Writer>
21 void serialize(Writer& writer, const common::ToolInfo& ti);
22 void deserialize(const rapidjson::Value& val, common::ToolInfo& ti);
23 
24 } // namespace serdes
25 } // namespace retdec
26 
27 #endif
void serialize(Writer &writer, const common::Address &a)
Definition: address.cpp:24
void deserialize(const rapidjson::Value &val, common::Address &a)
Definition: address.cpp:30
Definition: archive_wrapper.h:19