Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

38 linhas
907 B

  1. #pragma once
  2. #include "JObject_NetSDK.h"
  3. NS_NETSDK_CFG_BEGIN
  4. #define JK_Partition "Partition"
  5. class Partition : public JObject //硬盘相关
  6. {
  7. public:
  8. JIntObj DirverType;
  9. JBoolObj IsCurrent;
  10. JIntObj LogicSerialNo;
  11. JStrObj NewEndTime;
  12. JStrObj NewStartTime;
  13. JStrObj OldEndTime;
  14. JStrObj OldStartTime;
  15. JIntHex RemainSpace;
  16. JIntObj Status;
  17. JIntHex TotalSpace;
  18. public:
  19. Partition(JObject *pParent = NULL, const char *szName = JK_Partition):
  20. JObject(pParent,szName),
  21. DirverType(this, "DirverType"),
  22. IsCurrent(this, "IsCurrent"),
  23. LogicSerialNo(this, "LogicSerialNo"),
  24. NewEndTime(this, "NewEndTime"),
  25. NewStartTime(this, "NewStartTime"),
  26. OldEndTime(this, "OldEndTime"),
  27. OldStartTime(this, "OldStartTime"),
  28. RemainSpace(this, "RemainSpace"),
  29. Status(this, "Status"),
  30. TotalSpace(this, "TotalSpace"){
  31. };
  32. ~Partition(void){};
  33. };
  34. NS_NETSDK_CFG_END