00001 #ifndef baciTestImpl_h 00002 #define baciTestImpl_h 00003 /******************************************************************************* 00004 * ALMA - Atacama Large Millimiter Array 00005 * (c) European Southern Observatory, 2002 00006 * Copyright by ESO (in the framework of the ALMA collaboration) 00007 * and Cosylab 2002, All rights reserved 00008 * 00009 * This library is free software; you can redistribute it and/or 00010 * modify it under the terms of the GNU Lesser General Public 00011 * License as published by the Free Software Foundation; either 00012 * version 2.1 of the License, or (at your option) any later version. 00013 * 00014 * This library is distributed in the hope that it will be useful, 00015 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00017 * Lesser General Public License for more details. 00018 * 00019 * You should have received a copy of the GNU Lesser General Public 00020 * License along with this library; if not, write to the Free Software 00021 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00022 * 00023 * 00024 * "@(#) $Id: baciTestImpl.h,v 1.12 2009/10/13 10:27:03 acaproni Exp $" 00025 * 00026 * who when what 00027 * -------- -------- ---------------------------------------------- 00028 * acaproni 2008-03-17 created 00029 */ 00030 00031 #ifndef __cplusplus 00032 #error This is a C++ include file and cannot be used from plain C 00033 #endif 00034 00036 #include <baciCharacteristicComponentImpl.h> 00037 00039 #include <testComponentS.h> 00040 00042 #include <baciROdouble.h> 00043 #include <baciROboolean.h> 00044 #include <baciROpattern.h> 00045 #include <enumpropROImpl.h> 00046 00048 #include <baciSmartPropertyPointer.h> 00049 00050 00055 class BaciPropTest: public baci::CharacteristicComponentImpl, //Standard component superclass 00056 public virtual POA_alarmsystemPropTest::BaciPropTest //CORBA servant stub 00057 { 00058 public: 00066 BaciPropTest(ACE_CString name, maci::ContainerServices * containerServices); 00067 00071 virtual void execute(); 00072 00073 00077 virtual ~BaciPropTest(); 00078 00079 /* --------------------- [ CORBA interface ] ----------------------*/ 00083 virtual void setDoubleVar(CORBA::Float); 00084 virtual void setPatternVar(CORBA::Long); 00085 virtual void setBooleanVar(CORBA::Boolean); 00086 virtual void setEnumVar(alarmsystemPropTest::AlarmEnum); 00087 virtual void setDoubleVarComplete(CORBA::Float val, const char* faultFamily, const char* faultMember); 00088 00092 virtual ACS::ROdouble_ptr testDoubleVar(); 00093 00097 virtual ACS::ROpattern_ptr testPatternVar(); 00098 00102 virtual ::alarmsystemPropTest::ROAlarmEnum_ptr testEnumVar(); 00103 00107 virtual ACS::ROboolean_ptr testBooleanVar(); 00108 00109 private: 00110 00114 baci::SmartPropertyPointer<baci::ROdouble> m_testDoubleVar_sp; 00115 00116 baci::SmartPropertyPointer<baci::ROboolean>m_testBooleanVar_sp; 00117 00118 baci::SmartPropertyPointer<baci::ROpattern> m_testPatternVar_sp; 00119 00120 baci::SmartPropertyPointer<ROEnumImpl<ACS_ENUM_T(alarmsystemPropTest::AlarmEnum), POA_alarmsystemPropTest::ROAlarmEnum> 00121 > m_testEnumVar_sp; 00122 }; 00123 /*\@}*/ 00124 /*\@}*/ 00125 00126 #endif
1.7.0