Home | Download | Screen shots | Discussion | Documentation |
---|
#include <openvrml/field_value.h>
Inheritance diagram for openvrml::sfbool:
node
field value.
Public Types | |
typedef bool | value_type |
Type of value. | |
Public Member Functions | |
sfbool (value_type value=false) throw () | |
Construct. | |
sfbool (const sfbool &sfb) | |
Construct a copy. | |
virtual | ~sfbool () throw () |
Destroy. | |
sfbool & | operator= (const sfbool &sfb) throw ( std::bad_alloc ) |
Assign. | |
const value_type & | value () const throw () |
Access. | |
void | value (const value_type &val) throw ( std::bad_alloc ) |
Mutate. | |
void | swap (sfbool &sfb) throw () |
Swap. | |
Static Public Attributes | |
static const type_id | field_value_type_id = sfbool_id |
field_value::type_id for this class. | |
Private Member Functions | |
virtual std::auto_ptr< field_value > | do_clone () const throw ( std::bad_alloc ) |
Polymorphically construct a copy. | |
virtual sfbool & | do_assign (const field_value &value) throw ( std::bad_cast ) |
Virtual assignment. | |
virtual type_id | do_type () const throw () |
Get the field_value::type_id associated with this class. | |
virtual void | print (std::ostream &out) const |
Print to an output stream. | |
Related Functions | |
(Note that these are not member functions.) | |
bool | operator== (const sfbool &lhs, const sfbool &rhs) throw() |
Compare for equality. | |
bool | operator!= (const sfbool &lhs, const sfbool &rhs) throw() |
Compare for inequality. | |
template<> void | swap (openvrml::sfbool &a, openvrml::sfbool &b) |
Swap the values of a and b . |
Type of value.
openvrml::sfbool::sfbool | ( | value_type | value = false |
) | throw () [explicit] |
Construct.
[in] | value | initial value |
openvrml::sfbool::sfbool | ( | const sfbool & | sfb | ) |
Construct a copy.
[in] | sfb | the instance to copy. |
openvrml::sfbool::~sfbool | ( | ) | throw () [virtual] |
Destroy.
openvrml::sfbool & openvrml::sfbool::operator= | ( | const sfbool & | sfb | ) | throw ( std::bad_alloc ) |
Assign.
[in] | sfb | the value to assign. |
std::bad_alloc | if memory allocation fails. |
const openvrml::sfbool::value_type & openvrml::sfbool::value | ( | ) | const throw () |
void openvrml::sfbool::value | ( | const value_type & | val | ) | throw ( std::bad_alloc ) |
Mutate.
[in] | val | the new value. |
std::bad_alloc | if memory allocation fails. |
void openvrml::sfbool::swap | ( | sfbool & | sfb | ) | throw () |
Swap.
[in,out] | sfb | the value to swap with this one. |
std::auto_ptr< openvrml::field_value > openvrml::sfbool::do_clone | ( | ) | const throw ( std::bad_alloc ) [private, virtual] |
Polymorphically construct a copy.
std::bad_alloc | if memory allocation fails. |
Implements openvrml::field_value.
openvrml::sfbool & openvrml::sfbool::do_assign | ( | const field_value & | value | ) | throw ( std::bad_cast ) [private, virtual] |
Virtual assignment.
[in] | value | the new value to give the object. |
std::bad_cast | if value is not an sfbool. |
Implements openvrml::field_value.
openvrml::field_value::type_id openvrml::sfbool::do_type | ( | ) | const throw () [private, virtual] |
Get the field_value::type_id associated with this class.
field_value::sfbool
. Implements openvrml::field_value.
void openvrml::sfbool::print | ( | std::ostream & | out | ) | const [private, virtual] |
Print to an output stream.
[in,out] | out | an output stream. |
Implements openvrml::field_value.
Compare for equality.
[in] | lhs | left-hand operand. |
[in] | rhs | right-hand operand. |
true
if lhs
and rhs
have the same value; false
otherwise. Compare for inequality.
[in] | lhs | left-hand operand. |
[in] | rhs | right-hand operand. |
true
if lhs
and rhs
do not have the same value; false
otherwise. template<> void swap | ( | openvrml::sfbool & | a, | |
openvrml::sfbool & | b | |||
) | [related] |
Swap the values of a
and b
.
Does not throw.
[in,out] | a | |
[in,out] | b |
const openvrml::field_value::type_id openvrml::sfbool::field_value_type_id = sfbool_id [static] |
field_value::type_id
for this class.