00001 #include "PropertyContainerEvent.h" 00002 00003 namespace RenderTools { 00004 00005 PropertyContainerEvent::PropertyContainerEvent( Type type, const PropertyContainerPtr container, const string propertyName ): 00006 m_type( type ), 00007 m_container( container ), 00008 m_propertyName( propertyName ){ 00009 } 00010 00011 PropertyContainerEvent::Type PropertyContainerEvent::getType( void ) const { 00012 return( m_type ); 00013 } 00014 00015 const PropertyContainerPtr PropertyContainerEvent::getContainer( void ) const { 00016 return( m_container ); 00017 } 00018 00019 const string PropertyContainerEvent::getPropertyName( void ) const { 00020 return( m_propertyName ); 00021 } 00022 00023 };
1.5.8