1#ifndef FILE_SYSTEM_HPP_
2#define FILE_SYSTEM_HPP_
17#if defined(_WIN32) && !defined(UNICODE)
18 #define USE_WIDE_CHAR_PATH
19 #define TO_PATH_STR(str) L##str
21 #define TO_PATH_STR(str) str
Definition FileSystem.hpp:7
typename PathType::string_type PathStringType
Definition FileSystem.hpp:10
typename PathStringType::value_type PathCharType
Definition FileSystem.hpp:11
std::filesystem::path PathType
Definition FileSystem.hpp:9
typename FileContentType::value_type FileCharType
Definition FileSystem.hpp:13
std::string FileContentType
Definition FileSystem.hpp:12