]> Creatis software - cpPlugins.git/commitdiff
Basic IO architecture within itk-based pipelines
authorLeonardo Florez-Valencia <florez-l@javeriana.edu.co>
Mon, 8 Dec 2014 21:18:19 +0000 (22:18 +0100)
committerLeonardo Florez-Valencia <florez-l@javeriana.edu.co>
Mon, 8 Dec 2014 21:18:19 +0000 (22:18 +0100)
lib/cpPlugins/Interface/Image.cxx [new file with mode: 0644]
lib/cpPlugins/Interface/SinkObject.cxx [new file with mode: 0644]

diff --git a/lib/cpPlugins/Interface/Image.cxx b/lib/cpPlugins/Interface/Image.cxx
new file mode 100644 (file)
index 0000000..9b55ed2
--- /dev/null
@@ -0,0 +1,23 @@
+#include <cpPlugins/Interface/Image.h>
+
+// -------------------------------------------------------------------------
+cpPlugins::Interface::Image::
+Image( )
+  : Superclass( )
+{
+}
+
+// -------------------------------------------------------------------------
+cpPlugins::Interface::Image::
+~Image( )
+{
+}
+
+// -------------------------------------------------------------------------
+std::string cpPlugins::Interface::Image::
+GetClassName( ) const
+{
+  return( "cpPlugins::Interface::Image" );
+}
+
+// eof - $RCSfile$
diff --git a/lib/cpPlugins/Interface/SinkObject.cxx b/lib/cpPlugins/Interface/SinkObject.cxx
new file mode 100644 (file)
index 0000000..c0ff636
--- /dev/null
@@ -0,0 +1,24 @@
+#include <cpPlugins/Interface/SinkObject.h>
+
+// -------------------------------------------------------------------------
+cpPlugins::Interface::SinkObject::
+SinkObject( )
+  : Superclass( )
+{
+  this->SetNumberOfOutputs( 0 );
+}
+
+// -------------------------------------------------------------------------
+cpPlugins::Interface::SinkObject::
+~SinkObject( )
+{
+}
+
+// -------------------------------------------------------------------------
+std::string cpPlugins::Interface::SinkObject::
+GetClassName( ) const
+{
+  return( "cpPlugins::Interface::SinkObject" );
+}
+
+// eof - $RCSfile$