diff options
author | Marius Kintel <marius@kintel.net> | 2013-05-21 21:45:24 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-05-21 21:45:24 (GMT) |
commit | e2772c70b862e3669c3a279f2540d746438ec38d (patch) | |
tree | ac2505cacb5289b9e9c217a66ef75a54748a25b0 /src/PlatformUtils.h | |
parent | f8622005f89c52061f498ab6ec28adfbd332c344 (diff) |
Initial Windows implementation of built-in library path. Part of #125
Diffstat (limited to 'src/PlatformUtils.h')
-rw-r--r-- | src/PlatformUtils.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/PlatformUtils.h b/src/PlatformUtils.h new file mode 100644 index 0000000..6448427 --- /dev/null +++ b/src/PlatformUtils.h @@ -0,0 +1,12 @@ +#ifndef PLATFORMUTILS_H_ +#define PLATFORMUTILS_H_ + +#include <string> + +namespace PlatformUtils { + + std::string documentsPath(); + +} + +#endif |