OrderedPropertyGroup< T > Class Template Reference

template<class T>
class awScene::OrderedPropertyGroup< T >

#include <Appearance.h>

Inheritance diagram for OrderedPropertyGroup< T >:
Inheritance graph
[legend]

List of all members.

Public Member Functions

bool  operator== (const OrderedPropertyGroup &that) const

Member Function Documentation

bool operator== ( const OrderedPropertyGroup< T > &  that ) const [inline]
    {
        if( this == &that ) return true;
        if( this->size() == that.size() )
        {
            for( int i = 0; i < this->size(); ++i )
            {
                if( (*this)[i] != that[i] )
                    return false;
            }
            return true;
        }
        return false;
    }