#ifndef _SYMBOL_HPP_ #define _SYMBOL_HPP_ #include #include #include #include #include "key.hpp" class Symbol { private: std::vector T; public: Symbol(const std::string&); void decrypt(const std::string&); }; #endif