#ifndef CRYPTION_H #define CRYPTION_H #include #include 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