1 // Copyright (C) 2005 CEA/DEN, EDF R&D
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
8 // This library is distributed in the hope that it will be useful
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 // Lesser General Public License for more details.
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 // See http://www.salome-platform.org/
21 #include "utilities.h"
26 //=============================================================================
28 * standard constructor
30 //=============================================================================
32 HELLO::HELLO(CORBA::ORB_ptr orb,
33 PortableServer::POA_ptr poa,
34 PortableServer::ObjectId * contId,
35 const char *instanceName,
36 const char *interfaceName) :
37 Engines_Component_i(orb, poa, contId, instanceName, interfaceName)
39 MESSAGE("activate object");
41 _id = _poa->activate_object(_thisObj);
49 char* HELLO::makeBanner(const char* name)
51 string banner="Hello, ";
53 return CORBA::string_dup(banner.c_str());
60 PortableServer::ObjectId * HELLOEngine_factory(
62 PortableServer::POA_ptr poa,
63 PortableServer::ObjectId * contId,
64 const char *instanceName,
65 const char *interfaceName)
67 MESSAGE("PortableServer::ObjectId * HELLOEngine_factory()");
68 SCRUTE(interfaceName);
70 = new HELLO(orb, poa, contId, instanceName, interfaceName);
71 return myHELLO->getId() ;