--- /dev/null
+#include <cpPlugins/Interface/PolyLineParametricPathSource.h>
+
+// -------------------------------------------------------------------------
+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$
--- /dev/null
+#ifndef __CPPLUGINS__INTERFACE__POLYLINEPARAMETRICPATHSOURCE__H__
+#define __CPPLUGINS__INTERFACE__POLYLINEPARAMETRICPATHSOURCE__H__
+
+#include <cpPlugins/Interface/cpPlugins_Interface_Export.h>
+#include <cpPlugins/Interface/SourceObject.h>
+
+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$