#ifndef _H #define _H /******************************************************************************* * ALMA - Atacama Large Millimiter Array * (c) UNSPECIFIED - FILL IN, 2004 * *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 * * "@(#) $Id$" * * who when what * -------- -------- ---------------------------------------------- * almauser3 2004-02-02 created */ /************************************************************************ * *---------------------------------------------------------------------- */ #ifndef __cplusplus #error This is a C++ include file and cannot be used from plain C #endif #include #include using namespace acscomponent; class Asm1Impl : public virtual ACSComponentImpl, public virtual POA_ACSCOURSE_ASM::Asm1 { public: Asm1Impl(PortableServer::POA_ptr poa, const ACE_CString &name); virtual ~Asm1Impl(); void setAverageValue (CORBA::Double nbOfValues) throw (CORBA::SystemException); protected: ;; private: // Declaration of copy constructor and assignment operator as private // methods, in order to hide them from the users. Asm1Impl& operator=(const Asm1Impl&); Asm1Impl (const Asm1Impl&); }; #endif /*!_H*/