選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

20 行
407 B

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