23 lines
302 B
C++
23 lines
302 B
C++
#ifndef CRYPTION_H
|
|
#define CRYPTION_H
|
|
|
|
#include<fstream>
|
|
#include<string>
|
|
|
|
class Cryption
|
|
{
|
|
public:
|
|
Cryption();
|
|
~Cryption();
|
|
Cryption(const std::string&);
|
|
|
|
std::string getMessage() const;
|
|
protected:
|
|
void setMessage(const std::string&);
|
|
|
|
std::string message{};
|
|
std::fstream ioEvent{};
|
|
};
|
|
|
|
#endif
|