StorageInfo.h 480 B

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