CMethodInterface.h 303 B

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