20 lines
318 B
C++
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_
|