Advertisement
babbles

FileShredder.h

Sep 15th, 2014
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.39 KB | None | 0 0
  1. #ifndef FILESHREDDER_H
  2. #define FILESHREDDER_H
  3.  
  4. #include <string>
  5.  
  6. class FileShredder
  7. {
  8.     public:
  9.         FileShredder() { }
  10.         FileShredder(const std::string& n) : fileName(n) { }
  11.  
  12.         void setFileName(const std::string);
  13.  
  14.         static unsigned Shred(const std::string&);
  15.         void Shred(void);
  16.     private:
  17.         std::string fileName;
  18. };
  19.  
  20. #endif // FILESHREDDER_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement