/** * @file drive.h * @brief represent * @author hendrik schutter * @date 16.12.2017 */ #ifndef DRIVE_H_ #define DRIVE_H_ #include "refurbishingHddTool.h" struct drive { string sPath; string sManufacturer; string sModel; string sSerial; string sCapacity; uint32_t u32ErrorCount; uint32_t u32PowerOnHours; uint32_t u32SpinUpCount; }; class Drive { protected: public: Drive(void); }; #endif // DRIVE_H_