25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

25 satır
542 B

  1. #pragma once
  2. #include "JObject_NetSDK.h"
  3. #include "Partition.h"
  4. NS_NETSDK_CFG_BEGIN
  5. #define JK_StorageInfo "StorageInfo"
  6. class StorageInfo : public JObject //磁盘分区
  7. {
  8. public:
  9. JIntObj PartNumber;
  10. JObjArray<Partition> Partition;
  11. JIntObj PlysicalNo;
  12. public:
  13. StorageInfo(JObject *pParent = NULL, const char *szName = JK_StorageInfo):
  14. JObject(pParent,szName),
  15. PartNumber(this, "PartNumber"),
  16. Partition(this, "Partition"),
  17. PlysicalNo(this, "PlysicalNo"){
  18. };
  19. ~StorageInfo(void){};
  20. };
  21. NS_NETSDK_CFG_END