Files
OpenSceneGraph/src/osgDB/FileUtils.cpp
Robert Osfield 3668c050da Seperated out the platform specific implementions of the file search/access
routines - we now have FileUtils_Windows.cpp, FileUtils_Mac.cpp and
FileUtils_Unix.cpp.  The FileUtils_Mac.cpp is based on code submitted
by Josh Portway and add uses the carbon API for searching for files.
2002-04-23 13:59:01 +00:00

10 lines
302 B
C++

// moved each platforms file access definitions into their own file
// to make it easier to manage them.
#if defined(WIN32) && !defined(__CYGWIN__)
#include "FileUtils_Windows.cpp"
#elif defined(TARGET_API_MAC_CARBON)
#include "FileUtils_Mac.cpp"
#else
#include "FileUtils_Unix.cpp"
#endif