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/FolderStructure.h
2017-08-06 21:24:09 -05:00

17 lines
287 B
C++

#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