Salome HOME
Merge from V6_main 01/04/2013
[samples/component.git] / src / AddComponent / Adder_Impl.hxx
index 078414e912207456590b105c9746b80db6fb4c6b..edc632dfa49aaa54635701f0858665bbbe97934a 100644 (file)
@@ -1,31 +1,31 @@
-//  SuperVisionTest AddComponent : example of component that adds two numbers
+// Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
+//
+// Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License.
 //
-//  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
-//  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
-// 
-//  This library is free software; you can redistribute it and/or 
-//  modify it under the terms of the GNU Lesser General Public 
-//  License as published by the Free Software Foundation; either 
-//  version 2.1 of the License. 
-// 
-//  This library is distributed in the hope that it will be useful, 
-//  but WITHOUT ANY WARRANTY; without even the implied warranty of 
-//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
-//  Lesser General Public License for more details. 
-// 
-//  You should have received a copy of the GNU Lesser General Public 
-//  License along with this library; if not, write to the Free Software 
-//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
-// 
-//  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
 //
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 //
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
+
+//  SuperVisionTest AddComponent : example of component that adds two numbers
 //  File   : Adder_Impl.hxx
 //  Author : Jean Rahuel, CEA
 //  Module : SuperVisionTest
 //  $Header:
-
+//
 #ifndef _ADDER_IMPL_HXX_
 #define _ADDER_IMPL_HXX_
 
 
 class Adder_Impl :  public POA_SuperVisionTest::Adder ,
                     public Engines_Component_i {
-public:
-  Adder_Impl() ;
-  Adder_Impl( CORBA::ORB_ptr orb ,
-             PortableServer::POA_ptr poa ,
-             PortableServer::ObjectId * contId , 
-             const char *instanceName ,
-              const char *interfaceName , 
-              const char * graphName ,
-              const char * nodeName );
+  public:
+    Adder_Impl() ;
+    Adder_Impl( CORBA::ORB_ptr orb ,
+               PortableServer::POA_ptr poa ,
+               PortableServer::ObjectId * contId , 
+               const char *instanceName ,
+                const char *interfaceName , 
+                const char * graphName ,
+                const char * nodeName );
+
+    virtual ~Adder_Impl();
+
+    virtual char* getVersion();
+
+    virtual void destroy() ;
+
+    virtual CORBA::Double Add( CORBA::Double x , CORBA::Double y , CORBA::Double & z ) ;
 
-  virtual ~Adder_Impl();
+    virtual CORBA::Double AddWithoutSleep( CORBA::Double x , CORBA::Double y , CORBA::Double & z ) ;
 
-  virtual double Add( double x , double y , double & z ) ;
+    virtual CORBA::Double AddAndCompare( CORBA::Double x , CORBA::Double y ,
+                                         SuperVisionTest::Adder_ptr anOtherAdder ,
+                                          CORBA::Double & z ) ;
 
-  virtual double AddAndCompare( const double x , const double y ,
-                                const SuperVisionTest::Adder_ptr anOtherAdder ,
-                                double & z ) ;
+    virtual void SetLastResult( CORBA::Double z ) ;
 
-  virtual void SetLastResult( double z ) ;
+    virtual void LastResult( CORBA::Double & z ) ;
 
-  virtual void LastResult( double & z ) ;
+    virtual Engines::EngineComponent_ptr LccAddComponent( const char * aContainer ,
+                                                          const char * aComponentName ) ;
 
-private:
+  private:
 
-  double LastAddition ;
+    double LastAddition ;
 
 };