This repository has been archived on 2026-07-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
PasswordEncryption/GeneratePasswordFileName.h
amazing-username 353a1dfef1 Solution to issue #6
2017-08-12 17:02:43 -05:00

16 lines
276 B
C++

#ifndef GENERATEPASSWORDFILENAME_H_
#define GENERATEPASSWORDFILENAME_H_
#include<string>
class GeneratePasswordFileName
{
public:
GeneratePasswordFileName();
std::string passwordFileNameString() const;
private:
void generatedFileName();
std::string filename;
};
#endif