Changeset 8278

Show
Ignore:
Timestamp:
05/07/08 16:30:58
Author:
robert
Message:

From Bob Kuehne, Added doxygen docs clarification of ReadResult? enum values

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • OpenSceneGraph/trunk/include/osgDB/ReaderWriter

    r8119 r8278  
    161161                enum ReadStatus 
    162162                { 
    163                     FILE_NOT_HANDLED, 
    164                     FILE_NOT_FOUND, 
    165                     FILE_LOADED, 
    166                     FILE_LOADED_FROM_CACHE, 
    167                     ERROR_IN_READING_FILE 
     163                    FILE_NOT_HANDLED, //!< file is not appropriate for this file reader, due to some incompatibility, but *not* a read error 
     164                    FILE_NOT_FOUND, //!< file could not be found or could not be read 
     165                    FILE_LOADED, //!< file successfully found, loaded, and converted into osg 
     166                    FILE_LOADED_FROM_CACHE, //!< file found in cache and returned 
     167                    ERROR_IN_READING_FILE //!< file found, loaded, but an error was encountered during processing 
    168168                }; 
    169169