nim_duilib/base/file/file_path.h

20 lines
318 B
C
Raw Normal View History

2019-04-19 17:19:57 +08:00
#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_