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,17 +9,16 @@
class Encryption : public Cryption
{
public:
Encryption();
~Encryption();
Encryption() = default;
~Encryption() = default;
Encryption(const std::string&);
void setEncryptedMessage(const std::string&);
void encryptMessage();
std::string getEncryptedMessage() const;
private:
std::string encryptedMessage{};
std::string encryptedMessage;
};
#endif