#ifndef KEYRETRIEVAL_H #define KEYRETRIEVAL_H #include #include #include #include"Key.h" using std::fstream; class KeyRetrieval { public: KeyRetrieval(); KeyRetrieval(const string); KeyRetrieval(const Key<>&); ~KeyRetrieval() = default; void retrieveKey(); void addToList(); void addRange(int, const int); void fileNameChoice(const string&); vector keyStructure(); vector codeCharacterStructure(); private: string fileName{"default_keys.txt"}; vector keys; vector characters; vector codeCharacter; const int keySize{5}; }; #endif