19 lines
287 B
C++
19 lines
287 B
C++
#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
|