25 lines
279 B
C++
25 lines
279 B
C++
/**
|
|
* @file wipe.h
|
|
* @brief wipe drive
|
|
* @author hendrik schutter
|
|
* @date 03.05.2020
|
|
*/
|
|
|
|
#ifndef WIPE_H_
|
|
#define WIPE_H_
|
|
|
|
#include "reHDD.h"
|
|
|
|
class Wipe
|
|
{
|
|
protected:
|
|
|
|
public:
|
|
static void wipeDrive(Drive* drive);
|
|
|
|
private:
|
|
Wipe(void);
|
|
|
|
};
|
|
|
|
#endif // WIPE_H_
|