delete task

This commit is contained in:
2020-08-23 11:04:10 +02:00
parent ec300d7c75
commit a2a18bbc34
6 changed files with 75 additions and 8 deletions

25
include/delete.h Normal file
View File

@ -0,0 +1,25 @@
/**
* @file delete.h
* @brief delete drive
* @author hendrik schutter
* @date 23.08.2020
*/
#ifndef DELETE_H_
#define DELETE_H_
#include "reHDD.h"
class Delete
{
protected:
public:
static void deleteDrive(Drive* drive);
private:
Delete(void);
};
#endif // DELETE_H_