#ifndef CRYPTOGRAPHER_H #define CRYPTOGRAPHER_H #include //#include //#include //#include //#include //#include //#include class Cryptographer { public: Cryptographer(QString key); QString encrypt(QString message); QString decrypt(QString message); private: QString key; }; #endif // CRYPTOGRAPHER_H