blob: 57ee4684417720dc30e295dd42e03fa07f4a1e20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef PLATFORMUTILS_H_
#define PLATFORMUTILS_H_
#include <string>
namespace PlatformUtils {
std::string documentsPath();
std::string libraryPath();
bool createLibraryPath();
std::string backupPath();
bool createBackupPath();
std::string info();
}
#endif
|