ExposureParam.h 429 B

12345678910111213141516171819202122
  1. #pragma once
  2. #include "FunSDK/JObject.h"
  3. #define JK_ExposureParam "ExposureParam"
  4. class ExposureParam : public JObject //曝光
  5. {
  6. public:
  7. JIntHex LeastTime;
  8. JIntObj Level;
  9. JIntHex MostTime;
  10. public:
  11. ExposureParam(JObject *pParent = NULL, const char *szName = JK_ExposureParam):
  12. JObject(pParent,szName),
  13. LeastTime(this, "LeastTime"),
  14. Level(this, "Level"),
  15. MostTime(this, "MostTime"){
  16. };
  17. ~ExposureParam(void){};
  18. };