#ifndef __CPPLUGINS__INTERFACE__IMAGESOURCE__H__ #define __CPPLUGINS__INTERFACE__IMAGESOURCE__H__ #include #include namespace cpPlugins { namespace Interface { /** */ class cpPlugins_Interface_EXPORT ImageSource : public SourceObject { public: typedef ImageSource Self; typedef SourceObject Superclass; typedef itk::SmartPointer< Self > Pointer; typedef itk::SmartPointer< const Self > ConstPointer; public: itkTypeMacro( ImageSource, SourceObject ); public: virtual std::string GetClassName( ) const; virtual std::string GetClassType( ) const; protected: ImageSource( ); virtual ~ImageSource( ); private: // Purposely not implemented ImageSource( const Self& ); Self& operator=( const Self& ); }; } // ecapseman } // ecapseman #endif // __CPPLUGINS__INTERFACE__IMAGESOURCE__H__ // eof - $RCSfile$