-----------------------------------------------------------------------
| 103 | } |
| 104 | //----------------------------------------------------------------------- |
| 105 | static String concatenate_path( const String &base, const String &name ) |
| 106 | { |
| 107 | if( base.empty() || is_absolute_path( name.c_str() ) ) |
| 108 | return name; |
| 109 | else |
| 110 | return base + '/' + name; |
| 111 | } |
| 112 | //----------------------------------------------------------------------- |
| 113 | #if OGRE_PLATFORM == OGRE_PLATFORM_WIN32 || OGRE_PLATFORM == OGRE_PLATFORM_WINRT |
| 114 | std::wstring to_wpath( const String &text, unsigned codepage = CP_UTF8 ) |