#ifndef DECRYPTION_H #define DECRYPTION_H #include #include #include "Cryption.h" class Decryption : public Cryption { public: Decryption(); Decryption(const std::string&); void decryptMessage(); private: }; #endif