Go to the documentation of this file.00001 #ifndef VTKOBJECTOBSERVER_H
00002 #define VTKOBJECTOBSERVER_H
00003
00004 class vtkObject;
00005
00006 struct vtkObjectObserver
00007 {
00008 virtual void OnModified( const vtkObject* object ) = 0;
00009 virtual void OnDeleted( const vtkObject* object ) = 0;
00010 };
00011
00012 #endif // VTKOBJECTOBSERVER_H