X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSession%2FSession_ServerThread.hxx;h=29898b9b0b66a7e63d637ccefe07c3d21241e449;hb=b2df0ed4f0edde04e03b929672d0787fd2a5769b;hp=8c2e417da47a7eaf8bd0058e7d529ce4a7179442;hpb=399155730966dfc225fbb24f66204b05664385f2;p=modules%2Fgui.git diff --git a/src/Session/Session_ServerThread.hxx b/src/Session/Session_ServerThread.hxx index 8c2e417da..29898b9b0 100755 --- a/src/Session/Session_ServerThread.hxx +++ b/src/Session/Session_ServerThread.hxx @@ -1,46 +1,43 @@ -// SALOME Session : implementation of Session_ServerThread.hxx +// Copyright (C) 2007-2015 CEA/DEN, EDF R&D, OPEN CASCADE // -// 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.salome-platform.org/ or email : webmaster.salome@opencascade.com +// 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, or (at your option) any later version. // +// 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 // + +// SALOME Session : implementation of Session_ServerThread.hxx // File : Session_ServerThread.hxx // Author : Paul RASCLE, EDF -// Module : SALOME -// $Header$ #ifndef _SESSION_SERVERTHREAD_HXX_ #define _SESSION_SERVERTHREAD_HXX_ -#include -#include +#include "SALOME_Session.hxx" -#include "SALOME_NamingService.hxx" -#include - -using namespace std; +#include +#include -void WaitForServerReadiness(string serverName); +void WaitForServerReadiness(std::string serverName); +class SALOME_NamingService; +class Engines_Container_i; -class Session_ServerThread +class SESSION_EXPORT Session_ServerThread { public: static const int NB_SRV_TYP; @@ -48,11 +45,12 @@ public: Session_ServerThread(); Session_ServerThread(int argc, - char ** argv, - CORBA::ORB_ptr orb, - PortableServer::POA_ptr poa); + char ** argv, + CORBA::ORB_ptr orb, + PortableServer::POA_ptr poa); virtual ~Session_ServerThread(); void Init(); + void Shutdown(); protected: void ActivateModuleCatalog ( int argc, char ** argv ); void ActivateSALOMEDS ( int argc, char ** argv ); @@ -68,19 +66,22 @@ protected: CORBA::ORB_var _orb; PortableServer::POA_var _root_poa; SALOME_NamingService * _NS; + Engines_Container_i* _container; }; +class QMutex; +class QWaitCondition; -class Session_SessionThread : public Session_ServerThread +class SESSION_EXPORT Session_SessionThread : public Session_ServerThread { public: Session_SessionThread() {} Session_SessionThread(int argc, - char** argv, - CORBA::ORB_ptr orb, - PortableServer::POA_ptr poa, - QMutex* GUIMutex, - QWaitCondition* GUILauncher); + char** argv, + CORBA::ORB_ptr orb, + PortableServer::POA_ptr poa, + QMutex* GUIMutex, + QWaitCondition* GUILauncher); virtual ~Session_SessionThread(); protected: