Able to view encrypted keys in the key management window

This commit is contained in:
amazing-username
2017-08-11 20:44:33 -05:00
parent b83287b768
commit c1d17799cd
10 changed files with 113 additions and 14 deletions
+17
View File
@@ -0,0 +1,17 @@
#ifndef FILENAMERETRIEVAL_H_
#define FILENAMERETRIEVAL_H_
#include<vector>
#include<string>
class FileNameRetrieval
{
public:
FileNameRetrieval();
void retrieveFileNames();
std::vector<std::string> fileNameContainer() const;
private:
std::vector<std::string> fileNames;
};
#endif