Hermes2D
3.0
|
Class corresponding to the var schema type. More...
#include <mesh_h2d_xml.h>
Public Member Functions | |
virtual | ~var () |
Destructor. | |
name | |
Accessor and modifier functions for the name required attribute. | |
typedef ::xml_schema::string | name_type |
Attribute type. | |
typedef ::xsd::cxx::tree::traits < name_type, char > | name_traits |
Attribute traits type. | |
const name_type & | name () const |
Return a read-only (constant) reference to the attribute. More... | |
name_type & | name () |
Return a read-write reference to the attribute. More... | |
void | name (const name_type &x) |
Set the attribute value. More... | |
void | name (::std::auto_ptr< name_type > p) |
Set the attribute value without copying. More... | |
value | |
Accessor and modifier functions for the value required attribute. | |
typedef ::xml_schema::decimal | value_type |
Attribute type. | |
typedef ::xsd::cxx::tree::traits < value_type, char,::xsd::cxx::tree::schema_type::decimal > | value_traits |
Attribute traits type. | |
const value_type & | value () const |
Return a read-only (constant) reference to the attribute. More... | |
value_type & | value () |
Return a read-write reference to the attribute. More... | |
void | value (const value_type &x) |
Set the attribute value. More... | |
Constructors | |
var (const name_type &, const value_type &) | |
Create an instance from the ultimate base and initializers for required elements and attributes. | |
var (const ::xercesc::DOMElement &e,::xml_schema::flags f=0,::xml_schema::container *c=0) | |
Create an instance from a DOM element. More... | |
var (const var &x,::xml_schema::flags f=0,::xml_schema::container *c=0) | |
Copy constructor. More... | |
virtual var * | _clone (::xml_schema::flags f=0,::xml_schema::container *c=0) const |
Copy the instance polymorphically. More... | |
Class corresponding to the var schema type.
Definition at line 2615 of file mesh_h2d_xml.h.
XMLMesh::var::var | ( | const ::xercesc::DOMElement & | e, |
::xml_schema::flags | f = 0 , |
||
::xml_schema::container * | c = 0 |
||
) |
Create an instance from a DOM element.
e | A DOM element to extract the data from. |
f | Flags to create the new instance with. |
c | A pointer to the object that will contain the new instance. |
Definition at line 1887 of file mesh_h2d_xml.cpp.
XMLMesh::var::var | ( | const var & | x, |
::xml_schema::flags | f = 0 , |
||
::xml_schema::container * | c = 0 |
||
) |
Copy constructor.
x | An instance to make a copy of. |
f | Flags to create the copy with. |
c | A pointer to the object that will contain the copy. |
For polymorphic object models use the _clone
function instead.
Definition at line 1877 of file mesh_h2d_xml.cpp.
|
virtual |
Copy the instance polymorphically.
f | Flags to create the copy with. |
c | A pointer to the object that will contain the copy. |
This function ensures that the dynamic type of the instance is used for copying and should be used for polymorphic object models instead of the copy constructor.
Definition at line 1943 of file mesh_h2d_xml.cpp.
const var::name_type & XMLMesh::var::name | ( | ) | const |
Return a read-only (constant) reference to the attribute.
Definition at line 473 of file mesh_h2d_xml.cpp.
var::name_type & XMLMesh::var::name | ( | ) |
Return a read-write reference to the attribute.
Definition at line 479 of file mesh_h2d_xml.cpp.
void XMLMesh::var::name | ( | const name_type & | x | ) |
Set the attribute value.
x | A new value to set. |
This function makes a copy of its argument and sets it as the new value of the attribute.
Definition at line 485 of file mesh_h2d_xml.cpp.
void XMLMesh::var::name | ( | ::std::auto_ptr< name_type > | p | ) |
Set the attribute value without copying.
p | A new value to use. |
This function will try to use the passed value directly instead of making a copy.
Definition at line 491 of file mesh_h2d_xml.cpp.
const var::value_type & XMLMesh::var::value | ( | ) | const |
Return a read-only (constant) reference to the attribute.
Definition at line 497 of file mesh_h2d_xml.cpp.
var::value_type & XMLMesh::var::value | ( | ) |
Return a read-write reference to the attribute.
Definition at line 503 of file mesh_h2d_xml.cpp.
void XMLMesh::var::value | ( | const value_type & | x | ) |
Set the attribute value.
x | A new value to set. |
This function makes a copy of its argument and sets it as the new value of the attribute.
Definition at line 509 of file mesh_h2d_xml.cpp.