12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- #ifndef __INITIATIVETRANSFER_DEF_G_H
- #define __INITIATIVETRANSFER_DEF_G_H
- #pragma once
- // This code is generated by spgen tool!
- #include "SpHelper.h"
- namespace InitiativeTransfer {
- //
- // const goes here
- //
- #define FlowService_Method_SwitchToAgentFlow 0
- #define FlowService_Method_DisallowControl 1
- #define FlowService_Method_ReturnAgent 2
- #define FlowService_MethodSignature_SwitchToAgentFlow -1898800781
- #define FlowService_MethodSignature_DisallowControl -550996977
- #define FlowService_MethodSignature_ReturnAgent -1941180761
- struct FlowService_SwitchToAgentFlow_Info
- {
- CSimpleStringW req_context;
- void Serialize(SpBuffer &Buf)
- {
- Buf & req_context;
- }
- };
- struct FlowService_DisallowControl_Info
- {
- CSimpleStringW note;
- void Serialize(SpBuffer &Buf)
- {
- Buf & note;
- }
- };
- struct FlowService_ReturnAgent_Info
- {
- CSimpleStringW ans_context;
- void Serialize(SpBuffer &Buf)
- {
- Buf & ans_context;
- }
- };
- ///////////////////////////
- } // namespace InitiativeTransfer
- #endif // __INITIATIVETRANSFER_DEF_G_H
|