retdec
vtable.h
Go to the documentation of this file.
1 
7 #ifndef RETDEC_SERDES_VTABLE_H
8 #define RETDEC_SERDES_VTABLE_H
9 
10 #include <rapidjson/document.h>
11 
12 namespace retdec {
13 
14 namespace common {
15 class VtableItem;
16 class Vtable;
17 } // namespace common
18 
19 namespace serdes {
20 
21 template <typename Writer>
22 void serialize(Writer& writer, const common::VtableItem& vti);
23 void deserialize(const rapidjson::Value& val, common::VtableItem& vti);
24 
25 template <typename Writer>
26 void serialize(Writer& writer, const common::Vtable& vt);
27 void deserialize(const rapidjson::Value& val, common::Vtable& vt);
28 
29 } // namespace serdes
30 } // namespace retdec
31 
32 #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