|
osgEarth 2.1.1
|
Inheritance diagram for ReaderWriterYahoo:
Collaboration diagram for ReaderWriterYahoo:Public Member Functions | |
| ReaderWriterYahoo () | |
| virtual const char * | className () |
| virtual ReadResult | readObject (const std::string &file_name, const Options *options) const |
Definition at line 125 of file ReaderWriterYahoo.cpp.
| ReaderWriterYahoo::ReaderWriterYahoo | ( | ) | [inline] |
Definition at line 128 of file ReaderWriterYahoo.cpp.
{
supportsExtension( "osgearth_yahoo", "Yahoo maps data" );
}
| virtual const char* ReaderWriterYahoo::className | ( | ) | [inline, virtual] |
Definition at line 133 of file ReaderWriterYahoo.cpp.
{
return "Yahoo Imagery ReaderWriter";
}
| virtual ReadResult ReaderWriterYahoo::readObject | ( | const std::string & | file_name, |
| const Options * | options | ||
| ) | const [inline, virtual] |
Definition at line 138 of file ReaderWriterYahoo.cpp.
{
if ( !acceptsExtension(osgDB::getLowerCaseFileExtension( file_name )))
return ReadResult::FILE_NOT_HANDLED;
return new YahooSource( getTileSourceOptions(options) );
}
1.7.3