Able to view encrypted keys in the key management window
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user