openvrml::mfvec2f Class Reference

A 2-component vector array node field value. More...

#include <openvrml/field_value.h>

Inheritance diagram for openvrml::mfvec2f:

Public Types

typedef std::vector< vec2fvalue_type
 Type of value. More...
 
- Public Types inherited from openvrml::field_value

Public Member Functions

 mfvec2f (std::vector< vec2f >::size_type n=0, const vec2f &value=vec2f()) throw ( std::bad_alloc )
 Construct. More...
 
 mfvec2f (const value_type &value) throw ( std::bad_alloc )
 Construct. More...
 
 mfvec2f (const mfvec2f &mfv)
 Construct a copy. More...
 
virtual ~mfvec2f () throw ()
 Destroy. More...
 
mfvec2foperator= (const mfvec2f &mfv) throw ( std::bad_alloc )
 Assign. More...
 
const value_typevalue () const throw ()
 Access. More...
 
void value (const value_type &val) throw ( std::bad_alloc )
 Mutate. More...
 
void swap (mfvec2f &mfv) throw ()
 Swap. More...
 
- Public Member Functions inherited from openvrml::field_value
virtual ~field_value ()=0 throw ()
 Destroy. More...
 
std::auto_ptr< field_valueclone () const throw ( std::bad_alloc )
 Polymorphically construct a copy. More...
 
field_valueassign (const field_value &value) throw ( std::bad_cast , std::bad_alloc )
 Virtual assignment. More...
 
type_id type () const throw ()
 Get the field type. More...
 
template<typename FieldValue >
const FieldValue::value_type & value () const throw ()
 Access. More...
 
template<typename FieldValue >
void value (const typename FieldValue::value_type &val) throw ( std::bad_alloc )
 Mutate. More...
 
template<typename FieldValue >
void swap (FieldValue &val) throw ()
 Swap. More...
 

Static Public Attributes

static const type_id field_value_type_id = mfvec2f_id
 field_value::type_id for this class. More...
 

Private Member Functions

virtual std::auto_ptr< field_valuedo_clone () const throw ( std::bad_alloc )
 Polymorphically construct a copy. More...
 
virtual mfvec2fdo_assign (const field_value &value) throw ( std::bad_cast , std::bad_alloc )
 Virtual assignment. More...
 
virtual type_id do_type () const throw ()
 Get the field_value::type_id associated with this class. More...
 
virtual void print (std::ostream &) const
 Print to an output stream. More...
 

Related Functions

(Note that these are not member functions.)

bool operator== (const mfvec2f &lhs, const mfvec2f &rhs) throw()
 Compare for equality. More...
 
bool operator!= (const mfvec2f &lhs, const mfvec2f &rhs) throw()
 Compare for inequality. More...
 
template<> void swap (openvrml::mfvec2f &a, openvrml::mfvec2f &b)
 Swap the values of a and b. More...
 

Additional Inherited Members

- Static Public Member Functions inherited from openvrml::field_value
static std::auto_ptr< field_valuecreate (type_id type) throw ( std::bad_alloc )
 Create a default instance of the type specified by type. More...
 
- Protected Member Functions inherited from openvrml::field_value
template<typename ValueType >
 field_value (const ValueType &value, const value_type_constructor_tag &) throw ( std::bad_alloc )
 Construct. More...
 
 field_value (const field_value &value) throw ( std::bad_alloc )
 Construct a copy. More...
 
template<typename FieldValue >
FieldValue & operator= (const FieldValue &fv) throw ( std::bad_alloc )
 Assignment operator. More...
 

Detailed Description

A 2-component vector array node field value.

Model of
Field Value

Member Typedef Documentation

Constructor & Destructor Documentation

openvrml::mfvec2f::mfvec2f ( std::vector< vec2f >::size_type  n = 0,
const vec2f value = vec2f() 
)
throw (std::bad_alloc
)
explicit

Construct.

Creates an mfvec2f with n copies of value.

Parameters
[in]nthe number elements in mfvec2f::value.
[in]valueused to initialize mfvec2f::value.
Exceptions
std::bad_allocif memory allocation fails.
Postcondition
mfvec2f::value.size() is n. Every element in mfvec2f::value is a copy of value.
openvrml::mfvec2f::mfvec2f ( const value_type value)
throw (std::bad_alloc
)
inlineexplicit

Construct.

Parameters
[in]valueinitial value.
Exceptions
std::bad_allocif memory allocation fails.
openvrml::mfvec2f::mfvec2f ( const mfvec2f mfv)

Construct a copy.

Parameters
[in]mfvthe instance to copy.
openvrml::mfvec2f::~mfvec2f ( )
throw (
)
virtual

Destroy.

Each of the mfvec2f's value elements is destroyed, and memory allocated for them (if any) is deallocated.

Member Function Documentation

openvrml::mfvec2f & openvrml::mfvec2f::operator= ( const mfvec2f mfv)
throw (std::bad_alloc
)

Assign.

Parameters
[in]mfvthe value to assign.
Returns
a reference to the instance.
Exceptions
std::bad_allocif memory allocation fails.
const openvrml::mfvec2f::value_type & openvrml::mfvec2f::value ( ) const
throw (
)

Access.

Returns
the vector values.
void openvrml::mfvec2f::value ( const value_type val)
throw (std::bad_alloc
)

Mutate.

Parameters
[in]valthe new value.
Exceptions
std::bad_allocif memory allocation fails.
void openvrml::mfvec2f::swap ( mfvec2f mfv)
throw (
)

Swap.

Parameters
[in,out]mfvthe value to swap with this one.
std::auto_ptr< openvrml::field_value > openvrml::mfvec2f::do_clone ( ) const
throw (std::bad_alloc
)
privatevirtual

Polymorphically construct a copy.

Returns
a pointer to a copy of the object.
Exceptions
std::bad_allocif memory allocation fails.

Implements openvrml::field_value.

openvrml::mfvec2f & openvrml::mfvec2f::do_assign ( const field_value value)
throw ( std::bad_cast ,
std::bad_alloc
)
privatevirtual

Virtual assignment.

Returns
a reference to the object.
Exceptions
std::bad_castif value is not an mfvec2f object.
std::bad_allocif memory allocation fails.

Implements openvrml::field_value.

openvrml::field_value::type_id openvrml::mfvec2f::do_type ( ) const
throw (
)
privatevirtual

Get the field_value::type_id associated with this class.

Returns
field_value::mfvec2f_id.

Implements openvrml::field_value.

void openvrml::mfvec2f::print ( std::ostream &  out) const
privatevirtual

Print to an output stream.

Parameters
[in,out]outan output stream.

Implements openvrml::field_value.

Friends And Related Function Documentation

bool operator== ( const mfvec2f lhs,
const mfvec2f rhs 
)
throw(
)
related

Compare for equality.

Parameters
[in]lhsleft-hand operand.
[in]rhsright-hand operand.
Returns
true if lhs and rhs have the same value; false otherwise.
bool operator!= ( const mfvec2f lhs,
const mfvec2f rhs 
)
throw(
)
related

Compare for inequality.

Parameters
[in]lhsleft-hand operand.
[in]rhsright-hand operand.
Returns
true if lhs and rhs do not have the same value; false otherwise.
template<> void swap ( openvrml::mfvec2f a,
openvrml::mfvec2f b 
)
related

Swap the values of a and b.

Does not throw.

Parameters
[in,out]a
[in,out]b

Member Data Documentation

const openvrml::field_value::type_id openvrml::mfvec2f::field_value_type_id = mfvec2f_id
static

field_value::type_id for this class.