| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- #ifndef __HELLOSERVICE_DEF_G_H
- #define __HELLOSERVICE_DEF_G_H
- #pragma once
- // This code is generated by spgen tool!
- #include "spHelper.h"
- namespace HelloService {
- //
- // const goes here
- //
- #define HelloService_Method_Ping 0
- #define HelloService_Method_Hello 1
- #define HelloService_MethodSignature_Ping 0x8FA29144
- #define HelloService_MethodSignature_Hello 0x885E0CAD
- struct HelloService_Ping_Info
- {
- void Serialize(SpBuffer &Buf)
- {
- }
- };
- struct HelloService_Hello_Req
- {
- CSimpleStringA txt;
- void Serialize(SpBuffer &Buf)
- {
- Buf & txt;
- }
- };
- struct HelloService_Hello_Ans
- {
- CSimpleStringA txt;
- void Serialize(SpBuffer &Buf)
- {
- Buf & txt;
- }
- };
- ///////////////////////////
- } // namespace HelloService
- #endif // __HELLOSERVICE_DEF_G_H
|