Changeset 8621
- Timestamp:
- 07/17/08 14:26:42
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
OpenSceneGraph/trunk/src/osgWrappers/osgDB/ReaderWriter.cpp
r8583 r8621 18 18 #include <osg/Shape> 19 19 #include <osgDB/Archive> 20 #include <osgDB/AuthenticationMap> 20 21 #include <osgDB/ReaderWriter> 21 22 … … 326 327 "Get whether the KdTrees should be built for geometry in the loader model. ", 327 328 ""); 329 I_Method1(void, setAuthenticationMap, IN, osgDB::AuthenticationMap *, authenticationMap, 330 Properties::NON_VIRTUAL, 331 __void__setAuthenticationMap__AuthenticationMap_P1, 332 "Set the password map to be used by plugins when access files from secure locations. ", 333 ""); 334 I_Method0(const osgDB::AuthenticationMap *, getAuthenticationMap, 335 Properties::NON_VIRTUAL, 336 __C5_AuthenticationMap_P1__getAuthenticationMap, 337 "Get the password map to be used by plugins when access files from secure locations. ", 338 ""); 328 339 I_Method2(void, setPluginData, IN, const std::string &, s, IN, void *, v, 329 340 Properties::NON_VIRTUAL, … … 346 357 "Remove a value from the PluginData. ", 347 358 ""); 359 I_SimpleProperty(osgDB::AuthenticationMap *, AuthenticationMap, 360 0, 361 __void__setAuthenticationMap__AuthenticationMap_P1); 348 362 I_SimpleProperty(osgDB::ReaderWriter::Options::BuildKdTreesHint, BuildKdTreesHint, 349 363 __BuildKdTreesHint__getBuildKdTreesHint, OpenSceneGraph/trunk/src/osgWrappers/osgDB/Registry.cpp
r8583 r8621 23 23 #include <osg/Uniform> 24 24 #include <osgDB/Archive> 25 #include <osgDB/AuthenticationMap> 25 26 #include <osgDB/DatabasePager> 26 27 #include <osgDB/DotOsgWrapper> … … 352 353 Properties::NON_VIRTUAL, 353 354 __void__setBuildKdTreesHint__ReaderWriter_Options_BuildKdTreesHint, 354 " ",355 "Set whether the KdTrees should be built for geometry in the loader model. ", 355 356 ""); 356 357 I_Method0(osgDB::ReaderWriter::Options::BuildKdTreesHint, getBuildKdTreesHint, 357 358 Properties::NON_VIRTUAL, 358 359 __ReaderWriter_Options_BuildKdTreesHint__getBuildKdTreesHint, 359 " ",360 "Get whether the KdTrees should be built for geometry in the loader model. ", 360 361 ""); 361 362 I_Method1(void, setKdTreeBuilder, IN, osg::KdTreeBuilder *, builder, 362 363 Properties::NON_VIRTUAL, 363 364 __void__setKdTreeBuilder__osg_KdTreeBuilder_P1, 364 " ",365 "Set the KdTreeBuilder visitor that is used to build KdTree on loaded models. ", 365 366 ""); 366 367 I_Method0(osg::KdTreeBuilder *, getKdTreeBuilder, 367 368 Properties::NON_VIRTUAL, 368 369 __osg_KdTreeBuilder_P1__getKdTreeBuilder, 369 "", 370 "Get the KdTreeBuilder visitor that is used to build KdTree on loaded models. ", 371 ""); 372 I_Method1(void, setAuthenticationMap, IN, osgDB::AuthenticationMap *, authenticationMap, 373 Properties::NON_VIRTUAL, 374 __void__setAuthenticationMap__AuthenticationMap_P1, 375 "Set the password map to be used by plugins when access files from secure locations. ", 376 ""); 377 I_Method0(const osgDB::AuthenticationMap *, getAuthenticationMap, 378 Properties::NON_VIRTUAL, 379 __C5_AuthenticationMap_P1__getAuthenticationMap, 380 "Get the password map to be used by plugins when access files from secure locations. ", 370 381 ""); 371 382 I_Method1(void, setCreateNodeFromImage, IN, bool, flag, … … 567 578 "", 568 579 ""); 580 I_SimpleProperty(osgDB::AuthenticationMap *, AuthenticationMap, 581 0, 582 __void__setAuthenticationMap__AuthenticationMap_P1); 569 583 I_SimpleProperty(osgDB::ReaderWriter::Options::BuildKdTreesHint, BuildKdTreesHint, 570 584 __ReaderWriter_Options_BuildKdTreesHint__getBuildKdTreesHint,
