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
2017-06-20 18:33:38 -05:00

21 lines
277 B
C++

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