]> Creatis software - cpPlugins.git/commitdiff
More sync
authorLeonardo Florez-Valencia <florez-l@javeriana.edu.co>
Wed, 31 Dec 2014 10:10:38 +0000 (11:10 +0100)
committerLeonardo Florez-Valencia <florez-l@javeriana.edu.co>
Wed, 31 Dec 2014 10:10:38 +0000 (11:10 +0100)
lib/cpPlugins/Interface/PolyLineParametricPathSource.cxx [new file with mode: 0644]
lib/cpPlugins/Interface/PolyLineParametricPathSource.h [new file with mode: 0644]

diff --git a/lib/cpPlugins/Interface/PolyLineParametricPathSource.cxx b/lib/cpPlugins/Interface/PolyLineParametricPathSource.cxx
new file mode 100644 (file)
index 0000000..4930491
--- /dev/null
@@ -0,0 +1,30 @@
+#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$
diff --git a/lib/cpPlugins/Interface/PolyLineParametricPathSource.h b/lib/cpPlugins/Interface/PolyLineParametricPathSource.h
new file mode 100644 (file)
index 0000000..59578bf
--- /dev/null
@@ -0,0 +1,45 @@
+#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$