1234567891011121314151617181920212223242526272829303132 |
- #ifndef __BRANCHDEVICE_MSG_G_H
- #define __BRANCHDEVICE_MSG_G_H
- #pragma once
- // This code is generated by spgen tool!
- #include "SpHelper.h"
- namespace BranchDevice {
- #define eMsg_DeviceStatus 0
- #define eMsgSig_DeviceStatus 333921233
- struct DeviceStatus
- {
- int DevSN;
- int status;
- CSimpleStringA description;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & DevSN & status & description;
- }
- };
- ///////////////////////////
- } // namespace BranchDevice
- #endif // __BRANCHDEVICE_MSG_G_H
|