Added core serialization

This commit is contained in:
Hamish Milne 2019-08-07 02:53:56 +01:00 committed by zhupengfei
parent dc04774ece
commit ee2cae2093
5 changed files with 47 additions and 9 deletions

View file

@ -9,7 +9,7 @@
#include <memory>
#include <string>
#include <vector>
#include "boost/serialization/split_member.hpp"
#include "boost/serialization/access.hpp"
#include "common/common_types.h"
#include "core/mmio.h"
@ -324,6 +324,10 @@ private:
class Impl;
std::unique_ptr<Impl> impl;
friend class boost::serialization::access;
template<class Archive>
void serialize(Archive & ar, const unsigned int file_version);
};
/// Determines if the given VAddr is valid for the specified process.