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.

24 lines
516 B

  1. #pragma once
  2. #include "JObject_NetSDK.h"
  3. NS_NETSDK_CFG_BEGIN
  4. #define JK_fVideo_Volume "fVideo.Volume"
  5. class fVideo_Volume : public JObject
  6. {
  7. public:
  8. JStrObj AudioMode;
  9. JIntObj LeftVolume;
  10. JIntObj RightVolume;
  11. public:
  12. fVideo_Volume(JObject *pParent = NULL, const char *szName = JK_fVideo_Volume):
  13. JObject(pParent,szName),
  14. AudioMode(this, "AudioMode"),
  15. LeftVolume(this, "LeftVolume"),
  16. RightVolume(this, "RightVolume"){
  17. };
  18. ~fVideo_Volume(void){};
  19. };
  20. NS_NETSDK_CFG_END