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
+18
View File
@@ -0,0 +1,18 @@
#ifndef FOLDERSTRUCTURE_H_
#define FOLDERSTRUCTURE_H_
#include<string>
using std::string;
struct FolderStructure
{
static string rootDirectory;
static string keyDirectory;
static string passwordDirectory;
static string settingDirectory;
void setupPaths(const char*);
};
#endif