Update of /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv30415/src/libopenvrml/openvrml
Modified Files:
browser.cpp node.cpp node.h
Log Message:
Doc-comment improvements.
Index: node.h
===================================================================
RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml/node.h,v
retrieving revision 1.56
retrieving revision 1.57
diff -C2 -d -r1.56 -r1.57
*** node.h 19 May 2006 17:32:49 -0000 1.56
--- node.h 6 Aug 2006 03:37:19 -0000 1.57
***************
*** 250,254 ****
class OPENVRML_API node_type : boost::noncopyable {
! const openvrml::node_metatype & metatype_;
const std::string id_;
--- 250,254 ----
class OPENVRML_API node_type : boost::noncopyable {
! const node_metatype & metatype_;
const std::string id_;
***************
*** 256,260 ****
virtual ~node_type() OPENVRML_NOTHROW = 0;
! const openvrml::node_metatype & metatype() const OPENVRML_NOTHROW;
const std::string & id() const OPENVRML_NOTHROW;
const node_interface_set & interfaces() const OPENVRML_NOTHROW;
--- 256,260 ----
virtual ~node_type() OPENVRML_NOTHROW = 0;
! const node_metatype & metatype() const OPENVRML_NOTHROW;
const std::string & id() const OPENVRML_NOTHROW;
const node_interface_set & interfaces() const OPENVRML_NOTHROW;
***************
*** 267,271 ****
protected:
! node_type(const openvrml::node_metatype & c, const std::string & id)
OPENVRML_THROW1(std::bad_alloc);
--- 267,271 ----
protected:
! node_type(const node_metatype & c, const std::string & id)
OPENVRML_THROW1(std::bad_alloc);
Index: browser.cpp
===================================================================
RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml/browser.cpp,v
retrieving revision 1.187
retrieving revision 1.188
diff -C2 -d -r1.187 -r1.188
*** browser.cpp 6 Aug 2006 02:34:38 -0000 1.187
--- browser.cpp 6 Aug 2006 03:37:19 -0000 1.188
***************
*** 5483,5487 ****
*
* <pre>
! * #VRML V2.0 utf8
*
* PROTO Outer [] {
--- 5483,5487 ----
*
* <pre>
! * \#VRML V2.0 utf8
*
* PROTO Outer [] {
***************
*** 5492,5497 ****
*
* The @c node_metatype_id string for @c Outer would be
! * <code>%http://example.com/example.wrl#Outer</code>; and for @c Inner,
! * <code>%http://example.com/example.wrl#Outer#Inner</code>.
*/
--- 5492,5497 ----
*
* The @c node_metatype_id string for @c Outer would be
! * <code>%http://example.com/example.wrl\#Outer</code>; and for @c Inner,
! * <code>%http://example.com/example.wrl\#Outer\#Inner</code>.
*/
***************
*** 6624,6629 ****
* absolute URI. As such, it will always have a scheme through which the
* client code can choose a resolution mechanism. For more information on URI
! * syntax, see <a href="http://www.isi.edu/in-notes/rfc2396.txt">Internet
! * RFC 2396</a>.
*
* @param[in] uri an absolute Uniform Resource Identifier.
--- 6624,6630 ----
* absolute URI. As such, it will always have a scheme through which the
* client code can choose a resolution mechanism. For more information on URI
! * syntax, see <a
! * href="ftp://ftp.rfc-editor.org/in-notes/std/std66.txt">Internet
! * STD 66</a>.
*
* @param[in] uri an absolute Uniform Resource Identifier.
Index: node.cpp
===================================================================
RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml/node.cpp,v
retrieving revision 1.86
retrieving revision 1.87
diff -C2 -d -r1.86 -r1.87
*** node.cpp 4 Aug 2006 05:44:14 -0000 1.86
--- node.cpp 6 Aug 2006 03:37:19 -0000 1.87
***************
*** 627,631 ****
*/
void openvrml::node_metatype::initialize(viewpoint_node * initial_viewpoint,
! const double time)
OPENVRML_NOTHROW
{
--- 627,631 ----
*/
void openvrml::node_metatype::initialize(viewpoint_node * initial_viewpoint,
! const double time)
OPENVRML_NOTHROW
{
***************
*** 787,791 ****
* @exception std::bad_alloc if memory allocation fails.
*/
! openvrml::node_type::node_type(const openvrml::node_metatype & c,
const std::string & id)
OPENVRML_THROW1(std::bad_alloc):
--- 787,791 ----
* @exception std::bad_alloc if memory allocation fails.
*/
! openvrml::node_type::node_type(const node_metatype & c,
const std::string & id)
OPENVRML_THROW1(std::bad_alloc):
|