Added more controls to the skeleton, added a base class, updated some elements
This commit is contained in:
+24
@@ -0,0 +1,24 @@
|
||||
#ifndef CRYPTION_H
|
||||
#define CRYPTION_H
|
||||
|
||||
#include <fstream>
|
||||
#include <string>
|
||||
|
||||
class Cryption
|
||||
{
|
||||
public:
|
||||
Cryption();
|
||||
Cryption(const std::string&);
|
||||
|
||||
void setMessage(const std::string&);
|
||||
|
||||
std::string getMessage() const;
|
||||
|
||||
protected:
|
||||
std::string message;
|
||||
std::fstream ioEvent;
|
||||
|
||||
private:
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user