00001 #ifndef acsexmplAmsSeqImpl_h 00002 #define acsexmplAmsSeqImpl_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: acsexmplAmsSeqImpl.h,v 1.103 2008/10/09 08:41:11 cparedes Exp $" 00025 * 00026 * who when what 00027 * -------- -------- ---------------------------------------------- 00028 * david 2002-10-04 removed *m_controlLoop_p and also ActionFunction* because they weren't being used 00029 * david 2002-10-03 added inheritance from ACSDO and removed methods/members as a result 00030 * david 2002-07-02 added GNU license header 00031 * gchiozzi 2001-02-15 Added declaration of get_interface() method for Object Explorer 00032 * gchiozzi 2001-02-15 created created standard header 00033 * msekoran 2001-03-10 integrated with new BACI; ALMA coding convention used; doc. 00034 */ 00035 00036 #ifndef __cplusplus 00037 #error This is a C++ include file and cannot be used from plain C 00038 #endif 00039 00041 #include <baciCharacteristicComponentImpl.h> 00042 00044 #include <acsexmplAmsSeqS.h> 00045 00047 #include <baciRWdoubleSeq.h> 00048 #include <baciROdoubleSeq.h> 00049 00050 00121 class AmsTestSeq: public baci::CharacteristicComponentImpl, //Standard component superclass 00122 public virtual POA_AMSSEQ::AmsTestSeq //CORBA servant stub 00123 { 00124 00125 public: 00131 AmsTestSeq ( 00132 const ACE_CString &name, 00133 maci::ContainerServices * containerServices); 00134 00138 virtual ~AmsTestSeq(); 00139 00140 /* --------------------- [ CORBA interface ] ----------------------*/ 00148 virtual void 00149 setCoeff (); 00150 00158 virtual ACS::RWdoubleSeq_ptr 00159 RWdoubleSeqPM (); 00160 00168 virtual ACS::ROdoubleSeq_ptr 00169 ROdoubleSeqPM (); 00170 00171 /*Override component lifecycle methods*/ 00185 virtual void execute(); 00186 00187 private: 00191 baci::RWdoubleSeq *m_RWdoubleSeqPM_p; 00192 00196 baci::ROdoubleSeq *m_ROdoubleSeqPM_p; 00197 00201 void operator=(const AmsTestSeq&); 00202 }; 00203 /*\@}*/ 00204 /*\@}*/ 00205 00206 #endif /* acsexmplAmsSeqImpl_h */ 00207 00208