w11 - cpp 0.794
Backend server for Rlink and w11
Loading...
Searching...
No Matches
RtclProxyBase.ipp
Go to the documentation of this file.
1// $Id: RtclProxyBase.ipp 1186 2019-07-12 17:49:59Z mueller $
2// SPDX-License-Identifier: GPL-3.0-or-later
3// Copyright 2011- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
4//
5// Revision History:
6// Date Rev Version Comment
7// 2013-02-08 484 1.0.1 add CommandName()
8// 2011-02-20 363 1.0 Initial version
9// 2011-02-13 361 0.1 First draft
10// ---------------------------------------------------------------------------
11
16// all method definitions in namespace Retro
17namespace Retro {
18
19//------------------------------------------+-----------------------------------
21
22inline const std::string& RtclProxyBase::Type() const
23{
24 return fType;
25}
26
27//------------------------------------------+-----------------------------------
29
30inline Tcl_Command RtclProxyBase::Token() const
31{
32 return fCmdToken;
33}
34
35//------------------------------------------+-----------------------------------
37
38inline void RtclProxyBase::SetType(const std::string& type)
39{
40 fType = type;
41 return;
42}
43
44} // end namespace Retro
void SetType(const std::string &type)
FIXME_docs.
Tcl_Command fCmdToken
cmd token for object command
std::string fType
proxied type name
Tcl_Command Token() const
FIXME_docs.
const std::string & Type() const
FIXME_docs.
Declaration of class ReventLoop.
Definition: ReventLoop.cpp:47