added drive wipe

This commit is contained in:
2020-05-03 17:17:20 +02:00
parent eccd7b0a8b
commit 36e8f5b62c
5 changed files with 115 additions and 2 deletions

25
include/wipe.h Normal file
View File

@ -0,0 +1,25 @@
/**
* @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_