w11 - cpp 0.794
Backend server for Rlink and w11
Loading...
Searching...
No Matches
RtclClassBase.ipp
Go to the documentation of this file.
1// $Id: RtclClassBase.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// 2011-02-20 363 1.0 Initial version
8// 2011-02-18 362 0.1 First draft
9// ---------------------------------------------------------------------------
10
15// all method definitions in namespace Retro
16namespace Retro {
17
18//------------------------------------------+-----------------------------------
20
21inline const std::string& RtclClassBase::Type() const
22{
23 return fType;
24}
25
26//------------------------------------------+-----------------------------------
28
29inline Tcl_Command RtclClassBase::Token() const
30{
31 return fCmdToken;
32}
33
34//------------------------------------------+-----------------------------------
36
37inline void RtclClassBase::SetType(const std::string& type)
38{
39 fType = type;
40 return;
41}
42
43} // end namespace Retro
void SetType(const std::string &type)
FIXME_docs.
Tcl_Command fCmdToken
cmd token for class command
Tcl_Command Token() const
FIXME_docs.
std::string fType
classed type name
const std::string & Type() const
FIXME_docs.
Declaration of class ReventLoop.
Definition: ReventLoop.cpp:47