1
0
mirror of https://github.com/wfjm/w11.git synced 2026-02-16 21:11:37 +00:00
Files
wfjm.w11/tools/src/librwxxtpp/RtclRw11UnitTerm.cpp
wfjm 6024dce209 use std::bind instead of lambda
- automatic return type detection for lambda's can be error prone
- it is safer and more compact to use std:bind as method forwarder
- closes issue #19
2019-03-03 09:40:56 +01:00

103 lines
3.3 KiB
C++

// $Id: RtclRw11UnitTerm.cpp 1114 2019-02-23 18:01:55Z mueller $
//
// Copyright 2013-2019 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
//
// 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 <functional>
#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<const uint8_t*>(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<const string&> ("channelid", bind(&Rw11UnitTerm::ChannelId, pobj));
fGets.Add<bool> ("to7bit", bind(&Rw11UnitTerm::To7bit, pobj));
fGets.Add<bool> ("toenpc", bind(&Rw11UnitTerm::ToEnpc, pobj));
fGets.Add<bool> ("ti7bit", bind(&Rw11UnitTerm::Ti7bit, pobj));
fGets.Add<const string&> ("log", bind(&Rw11UnitTerm::Log, pobj));
fSets.Add<bool> ("to7bit", bind(&Rw11UnitTerm::SetTo7bit,pobj, _1));
fSets.Add<bool> ("toenpc", bind(&Rw11UnitTerm::SetToEnpc,pobj, _1));
fSets.Add<bool> ("ti7bit", bind(&Rw11UnitTerm::SetTi7bit,pobj, _1));
fSets.Add<const string&> ("log", bind(&Rw11UnitTerm::SetLog,pobj, _1));
return;
}
} // end namespace Retro