15 lines
195 B
C
Raw Normal View History

2023-11-05 03:26:09 +08:00
#pragma once
#include "ByteBuf.h"
namespace luban
{
class CfgBean
{
public:
virtual int getTypeId() const = 0;
virtual bool deserialize(ByteBuf& buf) = 0;
};
}