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 6c1f92ea30 Refractoring
2017-06-23 18:01:42 -05:00

20 lines
290 B
C++

#ifndef CRYPTION_H
#define CRYPTION_H
#include<string>
class Cryption
{
public:
Cryption() = default;
~Cryption() = default;
Cryption(const std::string&);
virtual void setMessage(const std::string&) = 0;
virtual std::string getMessage() const = 0;
std::string message;
};
#endif