#ifndef __HEALTHMANAGER_MSG_G_H #define __HEALTHMANAGER_MSG_G_H #pragma once // This code is generated by spgen tool! #include "SpHelper.h" namespace HealthManager { #define eMsg_TradeManage 0 #define eMsg_TerminalManager 1 #define eMsg_AuthStatus 2 #define eMsgSig_TradeManage 1347045541 #define eMsgSig_TerminalManager 1453185458 #define eMsgSig_AuthStatus -1654977732 struct TradeManage { int op; CSimpleStringA time; void Serialize(SpBuffer &Buf) { auto & buf = Buf & op & time; } }; /////////////////////////// struct TerminalManager { int op; void Serialize(SpBuffer &Buf) { auto & buf = Buf & op; } }; /////////////////////////// struct AuthStatus { int result; CSimpleStringA msg; void Serialize(SpBuffer &Buf) { auto & buf = Buf & result & msg; } }; /////////////////////////// } // namespace HealthManager #endif // __HEALTHMANAGER_MSG_G_H