From: Braden M. <br...@us...> - 2005-11-27 02:57:25
|
Update of /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24523/src/libopenvrml/openvrml Modified Files: browser.cpp Log Message: Take a reference to a const openvrml::browser as an argument. Index: browser.cpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml/browser.cpp,v retrieving revision 1.96 retrieving revision 1.97 diff -C2 -d -r1.96 -r1.97 *** browser.cpp 26 Nov 2005 22:04:33 -0000 1.96 --- browser.cpp 27 Nov 2005 02:57:18 -0000 1.97 *************** *** 4069,4075 **** /** * @brief Create a root scope. */ std::auto_ptr<openvrml::scope> ! create_root_scope(openvrml::browser & browser, const std::string & uri) throw (std::bad_alloc) { --- 4069,4081 ---- /** * @brief Create a root scope. + * + * @param browser a browser. + * @param uri identifier for the root scope. + * + * @exception std::bad_alloc if memory allocation fails. */ std::auto_ptr<openvrml::scope> ! create_root_scope(const openvrml::browser & browser, ! const std::string & uri) throw (std::bad_alloc) { |