InputMethod.h 349 B

123456789101112131415161718
  1. #pragma once
  2. #import "FunSDK/JObject.h"
  3. #define JK_InputMethod "InputMethod"
  4. class InputMethod : public JObject
  5. {
  6. public:
  7. JBoolObj NoSupportChinese;
  8. public:
  9. InputMethod(JObject *pParent = NULL, const char *szName = JK_InputMethod):
  10. JObject(pParent,szName),
  11. NoSupportChinese(this, "NoSupportChinese"){
  12. };
  13. ~InputMethod(void){};
  14. };