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.

23 lines
450 B

  1. #pragma once
  2. #include "JObject_NetSDK.h"
  3. #include "OSDInfoWidget.h"
  4. NS_NETSDK_CFG_BEGIN
  5. #define JK_OSDInfo "OSDInfo"
  6. class OSDInfo : public JObject
  7. {
  8. public:
  9. JObjArray<JStrObj> Info;
  10. OSDInfoWidget mOSDInfoWidget;
  11. public:
  12. OSDInfo(JObject *pParent = NULL, const char *szName = JK_OSDInfo):
  13. JObject(pParent,szName),
  14. Info(this, "Info"),
  15. mOSDInfoWidget(this, "OSDInfoWidget"){
  16. };
  17. ~OSDInfo(void){};
  18. };
  19. NS_NETSDK_CFG_END