w11 - cpp 0.794
Backend server for Rlink and w11
Loading...
Searching...
No Matches
Rw11UnitDL11.cpp
Go to the documentation of this file.
1// $Id: Rw11UnitDL11.cpp 1186 2019-07-12 17:49:59Z mueller $
2// SPDX-License-Identifier: GPL-3.0-or-later
3// Copyright 2013-2017 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
4//
5// Revision History:
6// Date Rev Version Comment
7// 2017-04-07 868 1.0.1 Dump(): add detail arg
8// 2013-03-03 494 1.0 Initial version
9// 2013-02-13 488 0.1 First draft
10// ---------------------------------------------------------------------------
11
16#include "librtools/RosFill.hpp"
17#include "Rw11CntlDL11.hpp"
18
19#include "Rw11UnitDL11.hpp"
20
21using namespace std;
22
28// all method definitions in namespace Retro
29namespace Retro {
30
31//------------------------------------------+-----------------------------------
33
35 : Rw11UnitTermBase<Rw11CntlDL11>(pcntl, index)
36{}
37
38//------------------------------------------+-----------------------------------
40
42{}
43
44//------------------------------------------+-----------------------------------
46
47void Rw11UnitDL11::Dump(std::ostream& os, int ind, const char* text,
48 int detail) const
49{
50 RosFill bl(ind);
51 os << bl << (text?text:"--") << "Rw11UnitDL11 @ " << this << endl;
52 Rw11UnitTermBase<Rw11CntlDL11>::Dump(os, ind, " ^", detail);
53 return;
54}
55
56} // end namespace Retro
I/O appicator to generate fill characters.
Definition: RosFill.hpp:24
virtual void Dump(std::ostream &os, int ind=0, const char *text=0, int detail=0) const
FIXME_docs.
~Rw11UnitDL11()
Destructor.
Rw11UnitDL11(Rw11CntlDL11 *pcntl, size_t index)
Constructor.
Implemenation (inline) of Rw11UnitTermBase.
virtual void Dump(std::ostream &os, int ind=0, const char *text=0, int detail=0) const
FIXME_docs.
Declaration of class ReventLoop.
Definition: ReventLoop.cpp:47