From 73b0cfaebc440484dbc92a3a3404a0ee0859008e Mon Sep 17 00:00:00 2001 From: Leonardo Florez-Valencia Date: Wed, 31 Dec 2014 11:10:38 +0100 Subject: [PATCH] More sync --- .../PolyLineParametricPathSource.cxx | 30 +++++++++++++ .../Interface/PolyLineParametricPathSource.h | 45 +++++++++++++++++++ 2 files changed, 75 insertions(+) create mode 100644 lib/cpPlugins/Interface/PolyLineParametricPathSource.cxx create mode 100644 lib/cpPlugins/Interface/PolyLineParametricPathSource.h diff --git a/lib/cpPlugins/Interface/PolyLineParametricPathSource.cxx b/lib/cpPlugins/Interface/PolyLineParametricPathSource.cxx new file mode 100644 index 0000000..4930491 --- /dev/null +++ b/lib/cpPlugins/Interface/PolyLineParametricPathSource.cxx @@ -0,0 +1,30 @@ +#include + +// ------------------------------------------------------------------------- +std::string cpPlugins::Interface::PolyLineParametricPathSource:: +GetClassName( ) const +{ + return( "cpPlugins::Interface::PolyLineParametricPathSource" ); +} + +// ------------------------------------------------------------------------- +std::string cpPlugins::Interface::PolyLineParametricPathSource:: +GetClassType( ) const +{ + return( "PolyLineParametricPathSource" ); +} + +// ------------------------------------------------------------------------- +cpPlugins::Interface::PolyLineParametricPathSource:: +PolyLineParametricPathSource( ) + : Superclass( ) +{ +} + +// ------------------------------------------------------------------------- +cpPlugins::Interface::PolyLineParametricPathSource:: +~PolyLineParametricPathSource( ) +{ +} + +// eof - $RCSfile$ diff --git a/lib/cpPlugins/Interface/PolyLineParametricPathSource.h b/lib/cpPlugins/Interface/PolyLineParametricPathSource.h new file mode 100644 index 0000000..59578bf --- /dev/null +++ b/lib/cpPlugins/Interface/PolyLineParametricPathSource.h @@ -0,0 +1,45 @@ +#ifndef __CPPLUGINS__INTERFACE__POLYLINEPARAMETRICPATHSOURCE__H__ +#define __CPPLUGINS__INTERFACE__POLYLINEPARAMETRICPATHSOURCE__H__ + +#include +#include + +namespace cpPlugins +{ + namespace Interface + { + /** + */ + class cpPlugins_Interface_EXPORT PolyLineParametricPathSource + : public SourceObject + { + public: + typedef PolyLineParametricPathSource Self; + typedef SourceObject Superclass; + typedef itk::SmartPointer< Self > Pointer; + typedef itk::SmartPointer< const Self > ConstPointer; + + public: + itkTypeMacro( PolyLineParametricPathSource, SourceObject ); + + public: + virtual std::string GetClassName( ) const; + virtual std::string GetClassType( ) const; + + protected: + PolyLineParametricPathSource( ); + virtual ~PolyLineParametricPathSource( ); + + private: + // Purposely not implemented + PolyLineParametricPathSource( const Self& ); + Self& operator=( const Self& ); + }; + + } // ecapseman + +} // ecapseman + +#endif // __CPPLUGINS__INTERFACE__POLYLINEPARAMETRICPATHSOURCE__H__ + +// eof - $RCSfile$ -- 2.49.0