#ifndef __cpPlugins__DataObjects__OrthoNormalBase__h__ #define __cpPlugins__DataObjects__OrthoNormalBase__h__ #include namespace cpPlugins { namespace DataObjects { /** */ class cpPlugins_EXPORT OrthoNormalBase : public cpPlugins::BaseObjects::DataObject { public: typedef OrthoNormalBase Self; typedef cpPlugins::BaseObjects::DataObject Superclass; typedef itk::SmartPointer< Self > Pointer; typedef itk::SmartPointer< const Self > ConstPointer; public: itkNewMacro( Self ); itkTypeMacro( OrthoNormalBase, DataObject ); cpPlugins_Id_Macro( OrthoNormalBase, Object ); cpPlugins_Compatibility_Macro; public: virtual void SetITK( itk::LightObject* o ) cpPlugins_OVERRIDE; virtual void SetVTK( vtkObjectBase* o ) cpPlugins_OVERRIDE; template< class _TMatrix > inline void SetITK( const _TMatrix& m ); template< class _TMatrix, class _TVector > inline void SetITK( const _TMatrix& m, const _TVector& v ); protected: OrthoNormalBase( ); virtual ~OrthoNormalBase( ); private: // Purposely not implemented OrthoNormalBase( const Self& ); Self& operator=( const Self& ); }; } // ecapseman } // ecapseman #include #endif // __cpPlugins__DataObjects__OrthoNormalBase__h__ // eof - $RCSfile$