Code cleanup

This commit is contained in:
amazing-username
2018-02-26 22:01:00 -06:00
commit cec1e0bbb6
39 changed files with 3268 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
#ifndef CRYPTION_H
#define CRYPTION_H
#include<string>
using std::string;
class Cryption
{
public:
Cryption() = default;
~Cryption() = default;
Cryption(const string&);
virtual void setMessage(const string&) = 0;
virtual string getMessage() const = 0;
string message;
};
#endif