]> Creatis software - cpPlugins.git/blobdiff - lib/cpPlugins/Interface/Object.cxx
Generic gaussian model estimator added
[cpPlugins.git] / lib / cpPlugins / Interface / Object.cxx
index c0418d3ce1f69ae4a6bd92d907f779750fecf365..1792a506442b2a589cdddeb5fb7964503c7a030d 100644 (file)
@@ -1,25 +1,33 @@
 #include <cpPlugins/Interface/Object.h>
 
 // -------------------------------------------------------------------------
-cpPlugins::Interface::Object::
-Object( )
+std::string cpPlugins::Interface::Object::
+GetClassName( ) const
 {
+  return( "cpPlugins::Interface::Object" );
+}
+
+// -------------------------------------------------------------------------
+std::string cpPlugins::Interface::Object::
+GetClassType( ) const
+{
+  return( "Object" );
 }
 
 // -------------------------------------------------------------------------
 cpPlugins::Interface::Object::
-~Object( )
+Object( )
+  : Superclass( )
 {
 }
 
 // -------------------------------------------------------------------------
-std::string cpPlugins::Interface::Object::
-GetClassName( ) const
+cpPlugins::Interface::Object::
+~Object( )
 {
-  return( "cpPlugins::Interface::Object" );
 }
 
 // -------------------------------------------------------------------------
-PLUMA_PROVIDER_SOURCE( cpPlugins::Interface::Object, 1, 1 );
+CPPLUGINS_PROVIDER_SOURCE( cpPlugins::Interface::Object, 1, 1 );
 
 // eof - $RCSfile$