You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "IxInterface.h"
|
|
|
|
|
|
|
|
|
|
class ZxSerializer;
|
|
|
|
|
|
|
|
|
|
// 序列化支持
|
|
|
|
|
class IxSerDes
|
|
|
|
|
: virtual public IxInterface
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
// 保存
|
|
|
|
|
virtual void onSerialize(ZxSerializer * ser) = 0;
|
|
|
|
|
|
|
|
|
|
// 加载
|
|
|
|
|
virtual void onDeserialize(ZxSerializer * ser) = 0;
|
|
|
|
|
};
|