Solution to issue #6

This commit is contained in:
amazing-username
2017-08-12 17:02:43 -05:00
parent c1d17799cd
commit 353a1dfef1
10 changed files with 186 additions and 48 deletions
+15
View File
@@ -0,0 +1,15 @@
#ifndef GENERATEPASSWORDFILENAME_H_
#define GENERATEPASSWORDFILENAME_H_
#include<string>
class GeneratePasswordFileName
{
public:
GeneratePasswordFileName();
std::string passwordFileNameString() const;
private:
void generatedFileName();
std::string filename;
};
#endif