You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 rivejä
393 B

  1. #pragma once
  2. #include "JObject_NetSDK.h"
  3. #include "UserInfo.h"
  4. NS_NETSDK_CFG_BEGIN
  5. #define JK_Users "Users"
  6. class UsersInfo : public JObject
  7. {
  8. public:
  9. JObjArray<UserInfos> userList;
  10. public:
  11. UsersInfo(JObject *pParent = NULL, const char *szName = JK_Users):
  12. JObject(pParent,szName),
  13. userList(this, "Users"){
  14. };
  15. ~UsersInfo(void){};
  16. };
  17. NS_NETSDK_CFG_END