nim_duilib/tool_kits/base/file/file_path.h
2019-04-19 17:19:57 +08:00

20 lines
318 B
C++

#ifndef BASE_FILE_FILE_PATH_H_
#define BASE_FILE_FILE_PATH_H_
#include <string>
namespace nbase
{
#if defined(OS_POSIX)
typedef std::string PathString;
#elif defined(OS_WIN)
typedef std::wstring PathString;
#endif
typedef PathString::value_type PathChar;
} // namespace nbase
#endif // BASE_FILE_FILE_PATH_H_