#include // ------------------------------------------------------------------------- cpBaseQtApplication::ActorProperties:: ActorProperties( QWidget* parent ) : QWidget( parent ) { } // ------------------------------------------------------------------------- cpBaseQtApplication::ActorProperties:: ~ActorProperties( ) { } // ------------------------------------------------------------------------- bool cpBaseQtApplication::ActorProperties:: addRenderWindow( vtkRenderWindow* win ) { if( win == NULL ) return( false ); this->m_Windows.insert( win ); return( true ); } // ------------------------------------------------------------------------- void cpBaseQtApplication::ActorProperties:: _render( ) { for( auto i = this->m_Windows.begin( ); i != this->m_Windows.end( ); ++i ) ( *i )->Render( ); } // eof - $RCSfile$