00001 #ifndef ACSNC_ORB_H 00002 #define ACSNC_ORB_H 00003 /******************************************************************************* 00004 * ALMA - Atacama Large Millimiter Array 00005 * (c) Associated Universities Inc., 2002 00006 * (c) European Southern Observatory, 2002 00007 * Copyright by ESO (in the framework of the ALMA collaboration) 00008 * and Cosylab 2002, All rights reserved 00009 * 00010 * This library is free software; you can redistribute it and/or 00011 * modify it under the terms of the GNU Lesser General Public 00012 * License as published by the Free Software Foundation; either 00013 * version 2.1 of the License, or (at your option) any later version. 00014 * 00015 * This library is distributed in the hope that it will be useful, 00016 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00017 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00018 * Lesser General Public License for more details. 00019 * 00020 * You should have received a copy of the GNU Lesser General Public 00021 * License along with this library; if not, write to the Free Software 00022 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00023 * 00024 * "@(#) $Id: acsncORBHelper.h,v 1.49 2008/10/09 07:57:41 cparedes Exp $" 00025 * 00026 * who when what 00027 * -------- -------- ---------------------------------------------- 00028 * david 2002-09-23 added doxygen comments 00029 * david 20/09/02 created 00030 */ 00031 00032 /************************************************************************ 00033 * 00034 *---------------------------------------------------------------------- 00035 */ 00036 00037 #ifndef __cplusplus 00038 #error This is a C++ include file and cannot be used from plain C 00039 #endif 00040 00041 #include <baci.h> 00042 #include <baciDB.h> 00043 #include <maciHelper.h> 00044 #include <ACSErrTypeCommon.h> 00045 00046 // using namespace baci; 00047 // using namespace maci; 00048 00049 // using namespace ACSErrTypeCommon; 00050 00051 00056 namespace nc { 00057 00058 00069 class ORBHelper 00070 { 00071 public: 00072 00079 ORBHelper(); 00080 00092 ORBHelper(int argc, char *argv[]); 00093 00098 virtual ~ORBHelper(); 00099 00108 CORBA::ORB_ptr 00109 getORB() const { return orb_mp; } 00110 00120 void 00121 runOrb(); 00122 00124 private: 00134 void 00135 init_ORB(); 00136 00148 void 00149 init_ORB(int argc, 00150 char *argv[]); 00151 00160 static void * 00161 runOrbThread(void *pThis); 00162 00166 CORBA::ORB_ptr orb_mp; 00167 00171 baci::BACIThreadManager *threadManager_mp; 00172 00176 void operator=(const ORBHelper&); 00177 00181 ORBHelper(const ORBHelper&); 00182 00183 }; 00184 }; 00185 00186 #endif