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 <baciROpattern.h> 00044 #include <enumpropROImpl.h> 00045 00047 #include <baciSmartPropertyPointer.h> 00048 00049 00054 class BaciPropTest: public baci::CharacteristicComponentImpl, //Standard component superclass 00055 public virtual POA_alarmsystemPropTest::BaciPropTest //CORBA servant stub 00056 { 00057 public: 00065 BaciPropTest(ACE_CString name, maci::ContainerServices * containerServices); 00066 00070 virtual void execute(); 00071 00072 00076 virtual ~BaciPropTest(); 00077 00078 /* --------------------- [ CORBA interface ] ----------------------*/ 00082 virtual void setDoubleVar(CORBA::Float); 00083 virtual void setPatternVar(CORBA::Long); 00084 virtual void setEnumVar(alarmsystemPropTest::AlarmEnum); 00085 virtual void setDoubleVarComplete(CORBA::Float val, const char* faultFamily, const char* faultMember); 00089 virtual ACS::ROdouble_ptr testDoubleVar(); 00090 00094 virtual ACS::ROpattern_ptr testPatternVar(); 00095 00099 virtual ::alarmsystemPropTest::ROAlarmEnum_ptr testEnumVar(); 00100 00101 private: 00102 00106 baci::SmartPropertyPointer<baci::ROdouble> m_testDoubleVar_sp; 00107 00108 baci::SmartPropertyPointer<baci::ROpattern> m_testPatternVar_sp; 00109 00110 baci::SmartPropertyPointer<ROEnumImpl<ACS_ENUM_T(alarmsystemPropTest::AlarmEnum), POA_alarmsystemPropTest::ROAlarmEnum> 00111 > m_testEnumVar_sp; 00112 }; 00113 /*\@}*/ 00114 /*\@}*/ 00115 00116 #endif