Code cleanup

This commit is contained in:
amazing-username
2018-02-26 22:01:00 -06:00
commit cec1e0bbb6
39 changed files with 3268 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
#ifndef GENERATEPASSWORDFILENAME_H_
#define GENERATEPASSWORDFILENAME_H_
#include"TimeInformation.h"
using std::string;
class GeneratePasswordFileName : public TimeInformation<int>
{
public:
GeneratePasswordFileName();
string passwordFileNameString() const;
int retrieveYear() const;
int retrieveMonth() const;
int retrieveDayOfMonth() const;
private:
void generatedFileName();
string filename;
};
#endif