Files
OpenSceneGraph/src/osgWrappers/osgDB/FileUtils.cpp
Robert Osfield b7b065abe3 Refactored the Registry::ReadFileCallback, WriteFileCallback and ReaderWriter::Options to they are now defined in their own header and in the osgDB namespace.
Introduced a new FindFileCallback to Registry to compliement the existing ReadFileCallback and WriteFileCallback.

Added support for assign Find, Read and WriteFileCallbacks to osdDB::Options to enable plugins/applications to override the callbacks just for that
read/write call and any nested file operations
2009-05-09 08:49:27 +00:00

32 lines
830 B
C++

// ***************************************************************************
//
// Generated automatically by genwrapper.
// Please DO NOT EDIT this file!
//
// ***************************************************************************
#include <osgIntrospection/ReflectionMacros>
#include <osgIntrospection/TypedMethodInfo>
#include <osgIntrospection/StaticMethodInfo>
#include <osgIntrospection/Attributes>
#include <osgDB/FileUtils>
// Must undefine IN and OUT macros defined in Windows headers
#ifdef IN
#undef IN
#endif
#ifdef OUT
#undef OUT
#endif
BEGIN_ENUM_REFLECTOR(osgDB::FileType)
I_DeclaringFile("osgDB/FileUtils");
I_EnumLabel(osgDB::FILE_NOT_FOUND);
I_EnumLabel(osgDB::REGULAR_FILE);
I_EnumLabel(osgDB::DIRECTORY);
END_REFLECTOR
TYPE_NAME_ALIAS(std::vector< std::string >, osgDB::DirectoryContents)