Salome HOME
0722aff79a869460746bfbf3aed872472ca76130
[modules/med.git] / src / MEDCouplingCorba / Test / TestMEDCouplingCorbaServ.cxx
1 // Copyright (C) 2007-2019  CEA/DEN, EDF R&D
2 //
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, or (at your option) any later version.
7 //
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.
12 //
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
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 // Author : Anthony Geay (CEA/DEN)
20
21 #include "MEDCouplingMeshFieldFactoryComponentServ.hxx"
22 #include "MEDCouplingMeshFieldFactoryComponent.hxx"
23
24 #include <stdexcept>
25 #include <iostream>
26 #include <fstream>
27
28 using namespace MEDCoupling;
29
30 int mainCorbaServ(int argc, char **argv);
31
32 int mainCorbaServ(int argc, char **argv)
33 {
34   CORBA::ORB_var orb=CORBA::ORB_init(argc,argv);
35   CORBA::Object_var obj=orb->resolve_initial_references("RootPOA");
36   PortableServer::POA_var poa=PortableServer::POA::_narrow(obj);
37   PortableServer::POAManager_var mgr=poa->the_POAManager();
38   mgr->activate();
39   SALOME_TEST::MEDCouplingMeshFieldFactoryComponent *compo=new SALOME_TEST::MEDCouplingMeshFieldFactoryComponent(orb);
40   SALOME_TEST::MEDCouplingMeshFieldFactory_var compoPtr=compo->_this();
41   CORBA::String_var str=orb->object_to_string(compoPtr);
42   std::ofstream stream(SALOME_TEST::MEDCouplingCorbaServBasicsTest::buildFileNameForIOR().c_str());
43   stream << str << std::endl;
44   stream.close();
45   orb->run();
46   delete compo;
47   return 0;
48 }
49
50 int main(int argc, char* argv[])
51 {
52   return mainCorbaServ(argc,argv);
53 }