您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

25 行
622 B

  1. #pragma once
  2. #include "JObject_NetSDK.h"
  3. NS_NETSDK_CFG_BEGIN
  4. #define JK_ExposureParam "ExposureParam"
  5. class ExposureParam : public JObject //曝光
  6. {
  7. public:
  8. JIntHex LeastTime; ///自动曝光时间下限或手动曝光时间,单位微秒
  9. JIntObj Level; ///曝光等级
  10. JIntHex MostTime; ///自动曝光时间上限,单位微秒
  11. public:
  12. ExposureParam(JObject *pParent = NULL, const char *szName = JK_ExposureParam):
  13. JObject(pParent,szName),
  14. LeastTime(this, "LeastTime"),
  15. Level(this, "Level"),
  16. MostTime(this, "MostTime"){
  17. };
  18. ~ExposureParam(void){};
  19. };
  20. NS_NETSDK_CFG_END