CMethodInterface.h 328 B

123456789101112131415161718
  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 mMethodName;
  10. std::string mMethodType;
  11. CTransStruct mRequestInterpreter;
  12. CTransStruct mResponseInterpreter;
  13. };
  14. }
  15. #endif