#ifndef _AH_XOR_H #define _AH_XOR_H #pragma once #include class CXOR { private: std::string _password; std::string _msg_cripte; public: CXOR(const std::string &fichierPassword); ~CXOR(void); std::string getMsgCripte(); void operator<< (const char *str); void operator<< (const std::string &str); }; #endif