From: Leonardo Florez-Valencia Date: Wed, 31 Dec 2014 10:10:38 +0000 (+0100) Subject: More sync X-Git-Tag: v0.1~423 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=73b0cfaebc440484dbc92a3a3404a0ee0859008e;p=cpPlugins.git More sync --- 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$