This repository has been archived on 2026-07-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
PasswordEncryption/Cryption.h
T
amazing-username cec1e0bbb6 Code cleanup
2018-02-26 22:01:00 -06:00

22 lines
290 B
C++

#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