// $Id: RtclRw11UnitRHRP.cpp 887 2017-04-28 19:32:52Z mueller $ // // Copyright 2015-2017 by Walter F.J. Mueller // // This program is free software; you may redistribute and/or modify it under // the terms of the GNU General Public License as published by the Free // Software Foundation, either version 2, or at your option any later version. // // This program 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 General Public License // for complete details. // // Revision History: // Date Rev Version Comment // 2017-04-08 870 1.1 inherit from RtclRw11UnitBase // 2015-05-14 680 1.0 Initial version // 2015-03-21 659 0.1 First draft // --------------------------------------------------------------------------- /*! \file \brief Implemenation of RtclRw11UnitRHRP. */ #include "RtclRw11UnitRHRP.hpp" using namespace std; /*! \class Retro::RtclRw11UnitRHRP \brief FIXME_docs */ // all method definitions in namespace Retro namespace Retro { //------------------------------------------+----------------------------------- //! Constructor RtclRw11UnitRHRP::RtclRw11UnitRHRP( Tcl_Interp* interp, const std::string& unitcmd, const boost::shared_ptr& spunit) : RtclRw11UnitBase("Rw11UnitRHRP", spunit) { SetupGetSet(); CreateObjectCmd(interp, unitcmd.c_str()); } //------------------------------------------+----------------------------------- //! Destructor RtclRw11UnitRHRP::~RtclRw11UnitRHRP() {} } // end namespace Retro