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 -4
View File
@@ -9,9 +9,8 @@
class Decryption : public Cryption
{
public:
Decryption();
~Decryption();
Decryption() = default;
~Decryption() = default;
Decryption(const std::string&);
void setDecryptedMessage(const std::string&);
@@ -21,7 +20,7 @@ public:
private:
std::string cstringToString(char[], const int&);
std::string decryptedMessage{};
std::string decryptedMessage;
};
#endif