osgEarth 2.1.1
|
Public Types | |
typedef vector_type::allocator_type | allocator_type |
typedef vector_type::value_type | value_type |
typedef vector_type::const_pointer | const_pointer |
typedef vector_type::pointer | pointer |
typedef vector_type::const_reference | const_reference |
typedef vector_type::reference | reference |
typedef vector_type::const_iterator | const_iterator |
typedef vector_type::iterator | iterator |
typedef vector_type::const_reverse_iterator | const_reverse_iterator |
typedef vector_type::reverse_iterator | reverse_iterator |
typedef vector_type::size_type | size_type |
typedef vector_type::difference_type | difference_type |
Public Member Functions | |
MixinVector () | |
MixinVector (size_type initial_size, const value_type &fill_value=value_type()) | |
template<class InputIterator > | |
MixinVector (InputIterator first, InputIterator last) | |
MixinVector (const vector_type &other) | |
MixinVector (const MixinVector &other) | |
MixinVector & | operator= (const vector_type &other) |
MixinVector & | operator= (const MixinVector &other) |
virtual | ~MixinVector () |
void | clear () |
void | resize (size_type new_size, const value_type &fill_value=value_type()) |
void | reserve (size_type new_capacity) |
void | swap (vector_type &other) |
void | swap (MixinVector &other) |
bool | empty () const |
size_type | size () const |
size_type | capacity () const |
size_type | max_size () const |
allocator_type | get_allocator () const |
const_iterator | begin () const |
iterator | begin () |
const_iterator | end () const |
iterator | end () |
const_reverse_iterator | rbegin () const |
reverse_iterator | rbegin () |
const_reverse_iterator | rend () const |
reverse_iterator | rend () |
const_reference | operator[] (size_type index) const |
reference | operator[] (size_type index) |
const_reference | at (size_type index) const |
reference | at (size_type index) |
void | assign (size_type count, const value_type &value) |
template<class Iter > | |
void | assign (Iter first, Iter last) |
void | push_back (const value_type &value) |
void | pop_back () |
iterator | erase (iterator where) |
iterator | erase (iterator first, iterator last) |
iterator | insert (iterator where, const value_type &value) |
template<class InputIterator > | |
void | insert (iterator where, InputIterator first, InputIterator last) |
void | insert (iterator where, size_type count, const value_type &value) |
const_reference | back () const |
reference | back () |
const_reference | front () const |
reference | front () |
vector_type & | asVector () |
const vector_type & | asVector () const |
Private Types | |
typedef std::vector< ValueT > | vector_type |
Private Attributes | |
vector_type | _impl |
Friends | |
bool | operator== (const MixinVector< ValueT, SuperClass > &left, const MixinVector< ValueT, SuperClass > &right) |
bool | operator== (const MixinVector< ValueT, SuperClass > &left, const std::vector< ValueT > &right) |
bool | operator== (const std::vector< ValueT > &left, const MixinVector< ValueT, SuperClass > &right) |
bool | operator!= (const MixinVector< ValueT, SuperClass > &left, const MixinVector< ValueT, SuperClass > &right) |
bool | operator!= (const MixinVector< ValueT, SuperClass > &left, const std::vector< ValueT > &right) |
bool | operator!= (const std::vector< ValueT > &left, const MixinVector< ValueT, SuperClass > &right) |
bool | operator< (const MixinVector< ValueT, SuperClass > &left, const MixinVector< ValueT, SuperClass > &right) |
bool | operator< (const MixinVector< ValueT, SuperClass > &left, const std::vector< ValueT > &right) |
bool | operator< (const std::vector< ValueT > &left, const MixinVector< ValueT, SuperClass > &right) |
bool | operator> (const MixinVector< ValueT, SuperClass > &left, const MixinVector< ValueT, SuperClass > &right) |
bool | operator> (const MixinVector< ValueT, SuperClass > &left, const std::vector< ValueT > &right) |
bool | operator> (const std::vector< ValueT > &left, const MixinVector< ValueT, SuperClass > &right) |
bool | operator<= (const MixinVector< ValueT, SuperClass > &left, const MixinVector< ValueT, SuperClass > &right) |
bool | operator<= (const MixinVector< ValueT, SuperClass > &left, const std::vector< ValueT > &right) |
bool | operator<= (const std::vector< ValueT > &left, const MixinVector< ValueT, SuperClass > &right) |
bool | operator>= (const MixinVector< ValueT, SuperClass > &left, const MixinVector< ValueT, SuperClass > &right) |
bool | operator>= (const MixinVector< ValueT, SuperClass > &left, const std::vector< ValueT > &right) |
bool | operator>= (const std::vector< ValueT > &left, const MixinVector< ValueT, SuperClass > &right) |
Same of osg::MixinVector, but with a superclass template parameter.
typedef vector_type::allocator_type osgEarth::MixinVector< ValueT, SuperClass >::allocator_type |
typedef vector_type::const_iterator osgEarth::MixinVector< ValueT, SuperClass >::const_iterator |
typedef vector_type::const_pointer osgEarth::MixinVector< ValueT, SuperClass >::const_pointer |
typedef vector_type::const_reference osgEarth::MixinVector< ValueT, SuperClass >::const_reference |
typedef vector_type::const_reverse_iterator osgEarth::MixinVector< ValueT, SuperClass >::const_reverse_iterator |
typedef vector_type::difference_type osgEarth::MixinVector< ValueT, SuperClass >::difference_type |
typedef vector_type::iterator osgEarth::MixinVector< ValueT, SuperClass >::iterator |
typedef vector_type::pointer osgEarth::MixinVector< ValueT, SuperClass >::pointer |
typedef vector_type::reference osgEarth::MixinVector< ValueT, SuperClass >::reference |
typedef vector_type::reverse_iterator osgEarth::MixinVector< ValueT, SuperClass >::reverse_iterator |
typedef vector_type::size_type osgEarth::MixinVector< ValueT, SuperClass >::size_type |
typedef vector_type::value_type osgEarth::MixinVector< ValueT, SuperClass >::value_type |
typedef std::vector<ValueT> osgEarth::MixinVector< ValueT, SuperClass >::vector_type [private] |
osgEarth::MixinVector< ValueT, SuperClass >::MixinVector | ( | ) | [inline, explicit] |
osgEarth::MixinVector< ValueT, SuperClass >::MixinVector | ( | size_type | initial_size, |
const value_type & | fill_value = value_type() |
||
) | [inline, explicit] |
osgEarth::MixinVector< ValueT, SuperClass >::MixinVector | ( | InputIterator | first, |
InputIterator | last | ||
) | [inline] |
osgEarth::MixinVector< ValueT, SuperClass >::MixinVector | ( | const vector_type & | other | ) | [inline] |
osgEarth::MixinVector< ValueT, SuperClass >::MixinVector | ( | const MixinVector< ValueT, SuperClass > & | other | ) | [inline] |
virtual osgEarth::MixinVector< ValueT, SuperClass >::~MixinVector | ( | ) | [inline, virtual] |
void osgEarth::MixinVector< ValueT, SuperClass >::assign | ( | size_type | count, |
const value_type & | value | ||
) | [inline] |
void osgEarth::MixinVector< ValueT, SuperClass >::assign | ( | Iter | first, |
Iter | last | ||
) | [inline] |
vector_type& osgEarth::MixinVector< ValueT, SuperClass >::asVector | ( | ) | [inline] |
const vector_type& osgEarth::MixinVector< ValueT, SuperClass >::asVector | ( | ) | const [inline] |
const_reference osgEarth::MixinVector< ValueT, SuperClass >::at | ( | size_type | index | ) | const [inline] |
reference osgEarth::MixinVector< ValueT, SuperClass >::at | ( | size_type | index | ) | [inline] |
const_reference osgEarth::MixinVector< ValueT, SuperClass >::back | ( | ) | const [inline] |
reference osgEarth::MixinVector< ValueT, SuperClass >::back | ( | ) | [inline] |
const_iterator osgEarth::MixinVector< ValueT, SuperClass >::begin | ( | ) | const [inline] |
iterator osgEarth::MixinVector< ValueT, SuperClass >::begin | ( | ) | [inline] |
size_type osgEarth::MixinVector< ValueT, SuperClass >::capacity | ( | ) | const [inline] |
void osgEarth::MixinVector< ValueT, SuperClass >::clear | ( | ) | [inline] |
bool osgEarth::MixinVector< ValueT, SuperClass >::empty | ( | ) | const [inline] |
iterator osgEarth::MixinVector< ValueT, SuperClass >::end | ( | ) | [inline] |
const_iterator osgEarth::MixinVector< ValueT, SuperClass >::end | ( | ) | const [inline] |
iterator osgEarth::MixinVector< ValueT, SuperClass >::erase | ( | iterator | where | ) | [inline] |
iterator osgEarth::MixinVector< ValueT, SuperClass >::erase | ( | iterator | first, |
iterator | last | ||
) | [inline] |
reference osgEarth::MixinVector< ValueT, SuperClass >::front | ( | ) | [inline] |
const_reference osgEarth::MixinVector< ValueT, SuperClass >::front | ( | ) | const [inline] |
allocator_type osgEarth::MixinVector< ValueT, SuperClass >::get_allocator | ( | ) | const [inline] |
void osgEarth::MixinVector< ValueT, SuperClass >::insert | ( | iterator | where, |
size_type | count, | ||
const value_type & | value | ||
) | [inline] |
void osgEarth::MixinVector< ValueT, SuperClass >::insert | ( | iterator | where, |
InputIterator | first, | ||
InputIterator | last | ||
) | [inline] |
iterator osgEarth::MixinVector< ValueT, SuperClass >::insert | ( | iterator | where, |
const value_type & | value | ||
) | [inline] |
size_type osgEarth::MixinVector< ValueT, SuperClass >::max_size | ( | ) | const [inline] |
MixinVector& osgEarth::MixinVector< ValueT, SuperClass >::operator= | ( | const MixinVector< ValueT, SuperClass > & | other | ) | [inline] |
MixinVector& osgEarth::MixinVector< ValueT, SuperClass >::operator= | ( | const vector_type & | other | ) | [inline] |
const_reference osgEarth::MixinVector< ValueT, SuperClass >::operator[] | ( | size_type | index | ) | const [inline] |
reference osgEarth::MixinVector< ValueT, SuperClass >::operator[] | ( | size_type | index | ) | [inline] |
void osgEarth::MixinVector< ValueT, SuperClass >::pop_back | ( | ) | [inline] |
void osgEarth::MixinVector< ValueT, SuperClass >::push_back | ( | const value_type & | value | ) | [inline] |
const_reverse_iterator osgEarth::MixinVector< ValueT, SuperClass >::rbegin | ( | ) | const [inline] |
reverse_iterator osgEarth::MixinVector< ValueT, SuperClass >::rbegin | ( | ) | [inline] |
reverse_iterator osgEarth::MixinVector< ValueT, SuperClass >::rend | ( | ) | [inline] |
const_reverse_iterator osgEarth::MixinVector< ValueT, SuperClass >::rend | ( | ) | const [inline] |
void osgEarth::MixinVector< ValueT, SuperClass >::reserve | ( | size_type | new_capacity | ) | [inline] |
void osgEarth::MixinVector< ValueT, SuperClass >::resize | ( | size_type | new_size, |
const value_type & | fill_value = value_type() |
||
) | [inline] |
size_type osgEarth::MixinVector< ValueT, SuperClass >::size | ( | ) | const [inline] |
void osgEarth::MixinVector< ValueT, SuperClass >::swap | ( | MixinVector< ValueT, SuperClass > & | other | ) | [inline] |
void osgEarth::MixinVector< ValueT, SuperClass >::swap | ( | vector_type & | other | ) | [inline] |
bool operator!= | ( | const MixinVector< ValueT, SuperClass > & | left, |
const MixinVector< ValueT, SuperClass > & | right | ||
) | [friend] |
bool operator!= | ( | const MixinVector< ValueT, SuperClass > & | left, |
const std::vector< ValueT > & | right | ||
) | [friend] |
bool operator!= | ( | const std::vector< ValueT > & | left, |
const MixinVector< ValueT, SuperClass > & | right | ||
) | [friend] |
bool operator< | ( | const MixinVector< ValueT, SuperClass > & | left, |
const std::vector< ValueT > & | right | ||
) | [friend] |
bool operator< | ( | const std::vector< ValueT > & | left, |
const MixinVector< ValueT, SuperClass > & | right | ||
) | [friend] |
bool operator< | ( | const MixinVector< ValueT, SuperClass > & | left, |
const MixinVector< ValueT, SuperClass > & | right | ||
) | [friend] |
bool operator<= | ( | const std::vector< ValueT > & | left, |
const MixinVector< ValueT, SuperClass > & | right | ||
) | [friend] |
bool operator<= | ( | const MixinVector< ValueT, SuperClass > & | left, |
const MixinVector< ValueT, SuperClass > & | right | ||
) | [friend] |
bool operator<= | ( | const MixinVector< ValueT, SuperClass > & | left, |
const std::vector< ValueT > & | right | ||
) | [friend] |
bool operator== | ( | const MixinVector< ValueT, SuperClass > & | left, |
const std::vector< ValueT > & | right | ||
) | [friend] |
bool operator== | ( | const MixinVector< ValueT, SuperClass > & | left, |
const MixinVector< ValueT, SuperClass > & | right | ||
) | [friend] |
bool operator== | ( | const std::vector< ValueT > & | left, |
const MixinVector< ValueT, SuperClass > & | right | ||
) | [friend] |
bool operator> | ( | const std::vector< ValueT > & | left, |
const MixinVector< ValueT, SuperClass > & | right | ||
) | [friend] |
bool operator> | ( | const MixinVector< ValueT, SuperClass > & | left, |
const MixinVector< ValueT, SuperClass > & | right | ||
) | [friend] |
bool operator> | ( | const MixinVector< ValueT, SuperClass > & | left, |
const std::vector< ValueT > & | right | ||
) | [friend] |
bool operator>= | ( | const MixinVector< ValueT, SuperClass > & | left, |
const std::vector< ValueT > & | right | ||
) | [friend] |
bool operator>= | ( | const std::vector< ValueT > & | left, |
const MixinVector< ValueT, SuperClass > & | right | ||
) | [friend] |
bool operator>= | ( | const MixinVector< ValueT, SuperClass > & | left, |
const MixinVector< ValueT, SuperClass > & | right | ||
) | [friend] |
vector_type osgEarth::MixinVector< ValueT, SuperClass >::_impl [private] |