reHDD/include/shred.h

25 lines
311 B
C
Raw Normal View History

2020-08-22 21:48:34 +02:00
/**
* @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:
2020-08-23 09:26:32 +02:00
static void shredDrive(Drive* drive, int* fdInformPipeWrite);
2020-08-22 21:48:34 +02:00
private:
Shred(void);
};
#endif // SHRED_H_