/** * @file shred.h * @brief shred drive * @author hendrik schutter * @date 03.05.2020 */ #ifndef SHRED_H_ #define SHRED_H_ #include "reHDD.h" class Shred { protected: public: static void shredDrive(Drive* drive, int* fdInformPipeWrite); private: Shred(void); }; #endif // SHRED_H_