12345678910111213141516171819 |
- #ifndef CMedthodInterface__h
- #define CMedthodInterface__h
- #include <string.h>
- #include "CTransStruct.h"
- namespace Chromium {
- class CMedthodInterface {
- public:
- bool m_forceNewReturn;
- std::string mEntityName;
- std::string mMethodName;
- std::string mMethodType;
- CTransStruct mRequestInterpreter;
- CTransStruct mResponseInterpreter;
- };
- }
- #endif
|