Refractoring code and adding memory management

This commit is contained in:
Flueric
2017-06-20 18:33:38 -05:00
parent e38f10e759
commit d82b286ec9
13 changed files with 135 additions and 1796 deletions
+3 -5
View File
@@ -1,22 +1,20 @@
#ifndef CRYPTION_H
#define CRYPTION_H
#include<fstream>
#include<string>
class Cryption
{
public:
Cryption();
~Cryption();
Cryption() = default;
~Cryption() = default;
Cryption(const std::string&);
std::string getMessage() const;
protected:
void setMessage(const std::string&);
std::string message{};
std::fstream ioEvent{};
std::string message;
};
#endif