12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- #ifndef __SENSORS_DEF_G_H
- #define __SENSORS_DEF_G_H
- #pragma once
- // This code is generated by spgen tool!
- #include "SpHelper.h"
- namespace Sensors {
- //
- // const goes here
- //
- #define SensorsService_Method_GetSensorsType 0
- #define SensorsService_Method_GetDevInfo 65535
- #define SensorsService_MethodSignature_GetSensorsType 553301
- #define SensorsService_MethodSignature_GetDevInfo 296205965
- struct SensorsService_GetSensorsType_Req
- {
- void Serialize(SpBuffer &Buf)
- {
- }
- };
- struct SensorsService_GetSensorsType_Ans
- {
- void Serialize(SpBuffer &Buf)
- {
- }
- };
- struct SensorsService_GetDevInfo_Req
- {
- void Serialize(SpBuffer &Buf)
- {
- }
- };
- struct SensorsService_GetDevInfo_Ans
- {
- CSimpleStringA type;
- CSimpleStringA model;
- CSimpleStringA version;
- int state;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & type & model & version & state;
- }
- };
- ///////////////////////////
- } // namespace Sensors
- #endif // __SENSORS_DEF_G_H
|