Added the feature of having a working application directory

This commit is contained in:
amazing-username
2017-08-06 21:24:09 -05:00
parent 4b7c0ea173
commit b83287b768
9 changed files with 166 additions and 7 deletions
+16
View File
@@ -0,0 +1,16 @@
#ifndef FOLDERSTRUCTURE_H_
#define FOLDERSTRUCTURE_H_
#include<string>
struct FolderStructure
{
static std::string rootDirectory;
static std::string keyDirectory;
static std::string passwordDirectory;
static std::string settingDirectory;
void setupPaths(const char*);
};
#endif