CMethodInterface.h 355 B

12345678910111213141516171819
  1. #ifndef CMedthodInterface__h
  2. #define CMedthodInterface__h
  3. #include <string.h>
  4. #include "CTransStruct.h"
  5. namespace Chromium {
  6. class CMedthodInterface {
  7. public:
  8. bool m_forceNewReturn;
  9. std::string mEntityName;
  10. std::string mMethodName;
  11. std::string mMethodType;
  12. CTransStruct mRequestInterpreter;
  13. CTransStruct mResponseInterpreter;
  14. };
  15. }
  16. #endif