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.

37 regels
712 B

  1. #pragma once
  2. #include "JObject_NetSDK.h"
  3. #include "CFG_AUX.h"
  4. #include "JPOINT.h"
  5. NS_NETSDK_CFG_BEGIN
  6. #define JK_Parameter "Parameter"
  7. class Parameter : public JObject
  8. {
  9. public:
  10. AUX mAUX;
  11. JIntObj Channel;
  12. JStrObj MenuOpts;
  13. JPOINT mPOINT;
  14. JStrObj Pattern;
  15. JIntObj Preset;
  16. JIntObj Step;
  17. JIntObj Tour;
  18. public:
  19. Parameter(JObject *pParent = NULL, const char *szName = JK_Parameter):
  20. JObject(pParent,szName),
  21. mAUX(this, "AUX"),
  22. Channel(this, "Channel"),
  23. MenuOpts(this, "MenuOpts"),
  24. mPOINT(this, "POINT"),
  25. Pattern(this, "Pattern"),
  26. Preset(this, "Preset"),
  27. Step(this, "Step"),
  28. Tour(this, "Tour"){
  29. };
  30. ~Parameter(void){};
  31. };
  32. NS_NETSDK_CFG_END