// $Id: RtclRw11UnitTerm.cpp 1114 2019-02-23 18:01:55Z mueller $ // // Copyright 2013-2019 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 3, 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 // 2019-02-23 1114 1.1.4 use std::bind instead of lambda // 2018-12-18 1089 1.1.3 use c++ style casts // 2018-12-15 1082 1.1.2 use lambda instead of boost::bind // 2018-10-06 1053 1.1.1 move using after includes (clang warning) // 2017-04-08 870 1.1 use Rw11UnitTerm& ObjUV(); inherit from RtclRw11Unit // 2013-04-26 511 1.0.1 add M_type // 2013-03-03 494 1.0 Initial version // 2013-03-01 493 0.1 First draft // --------------------------------------------------------------------------- /*! \file \brief Implemenation of RtclRw11UnitTerm. */ #include #include "RtclRw11UnitTerm.hpp" using namespace std; using namespace std::placeholders; /*! \class Retro::RtclRw11UnitTerm \brief FIXME_docs */ // all method definitions in namespace Retro namespace Retro { //------------------------------------------+----------------------------------- //! Constructor RtclRw11UnitTerm::RtclRw11UnitTerm(const std::string& type) : RtclRw11Unit(type) { AddMeth("type", bind(&RtclRw11UnitTerm::M_type, this, _1)); } //------------------------------------------+----------------------------------- //! FIXME_docs RtclRw11UnitTerm::~RtclRw11UnitTerm() {} //------------------------------------------+----------------------------------- //! FIXME_docs int RtclRw11UnitTerm::M_type(RtclArgs& args) { string text; if (!args.GetArg("text", text)) return TCL_ERROR; if (!args.AllDone()) return TCL_ERROR; ObjUV().RcvCallback(reinterpret_cast(text.data()), text.size()); return TCL_OK; } //------------------------------------------+----------------------------------- //! FIXME_docs void RtclRw11UnitTerm::SetupGetSet() { // this can't be in ctor because pure virtual is called which is available // only when more derived class is being constructed. SetupGetSet() must be // called in ctor of a more derived class. Rw11UnitTerm* pobj = &ObjUV(); fGets.Add ("channelid", bind(&Rw11UnitTerm::ChannelId, pobj)); fGets.Add ("to7bit", bind(&Rw11UnitTerm::To7bit, pobj)); fGets.Add ("toenpc", bind(&Rw11UnitTerm::ToEnpc, pobj)); fGets.Add ("ti7bit", bind(&Rw11UnitTerm::Ti7bit, pobj)); fGets.Add ("log", bind(&Rw11UnitTerm::Log, pobj)); fSets.Add ("to7bit", bind(&Rw11UnitTerm::SetTo7bit,pobj, _1)); fSets.Add ("toenpc", bind(&Rw11UnitTerm::SetToEnpc,pobj, _1)); fSets.Add ("ti7bit", bind(&Rw11UnitTerm::SetTi7bit,pobj, _1)); fSets.Add ("log", bind(&Rw11UnitTerm::SetLog,pobj, _1)); return; } } // end namespace Retro