X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FcpPlugins%2FPipeline%2FEvents.h;fp=lib%2FcpPlugins%2FPipeline%2FEvents.h;h=0000000000000000000000000000000000000000;hb=2e142df11d6f312a2a2b5097b8da73571ed523e8;hp=a675d93a1040b768ea305f4aa1b6a5815c554219;hpb=61b3659afe961ed248f30e26f9ca8f28fcfafddc;p=cpPlugins.git diff --git a/lib/cpPlugins/Pipeline/Events.h b/lib/cpPlugins/Pipeline/Events.h deleted file mode 100644 index a675d93..0000000 --- a/lib/cpPlugins/Pipeline/Events.h +++ /dev/null @@ -1,51 +0,0 @@ -#ifndef __cpPlugins__Pipeline__Events__h__ -#define __cpPlugins__Pipeline__Events__h__ - -#include -#include - -// ------------------------------------------------------------------------- -#define cpPluginsEventsOpenMacro( name ) \ - class name \ - : public itk::AnyEvent \ - { \ - public: \ - typedef name Self; \ - typedef itk::AnyEvent Superclass; \ - public: \ - name( ) : Superclass( ) { } \ - virtual ~name( ) { } \ - const char* GetEventName( ) const \ - { return( "cpPlugins::Pipeline::Events::#name" ); } \ - bool CheckEvent( const itk::EventObject* e ) const \ - { return( dynamic_cast< const Self* >( e ) != NULL ); } \ - itk::EventObject* MakeObject( ) const \ - { return( new Self( ) ); } - -// ------------------------------------------------------------------------- -#define cpPluginsEventsCloseMacro( name ) \ - } - -namespace cpPlugins -{ - namespace Pipeline - { - namespace Events - { - /** - */ - cpPluginsEventsOpenMacro( Modified ) - public: - itk::ModifiedTimeType Time; - long Span; - cpPluginsEventsCloseMacro( Modified ); - - } // ecapseman - - } // ecapseman - -} // ecapseman - -#endif // __cpPlugins__Pipeline__Events__h__ - -// eof - $RCSfile$