retdec
architecture.h
Go to the documentation of this file.
1 
7 #ifndef RETDEC_SERDES_ARCHITECTURE_H
8 #define RETDEC_SERDES_ARCHITECTURE_H
9 
10 #include <rapidjson/document.h>
11 #include <rapidjson/writer.h>
12 
13 namespace retdec {
14 
15 namespace common {
16 class Architecture;
17 } // namespace common
18 
19 namespace serdes {
20 
21 template <typename Writer>
22 void serialize(Writer& writer, const common::Architecture& a);
23 void deserialize(const rapidjson::Value& val, common::Architecture& a);
24 
25 } // namespace serdes
26 } // namespace retdec
27 
28 #endif
Architecture
Definition: fftypes.h:59
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