w11 - cpp 0.794
Backend server for Rlink and w11
Loading...
Searching...
No Matches
Rw11UnitTapeBase.hpp
Go to the documentation of this file.
1// $Id: Rw11UnitTapeBase.hpp 1186 2019-07-12 17:49:59Z mueller $
2// SPDX-License-Identifier: GPL-3.0-or-later
3// Copyright 2015-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// 2015-05-17 683 1.0 Initial version
9// ---------------------------------------------------------------------------
10
11
16#ifndef included_Retro_Rw11UnitTapeBase
17#define included_Retro_Rw11UnitTapeBase 1
18
19#include "Rw11UnitTape.hpp"
20
21namespace Retro {
22
23 template <class TC>
25 public:
26
27 Rw11UnitTapeBase(TC* pcntl, size_t index);
29
30 TC& Cntl() const;
31
32 virtual void Dump(std::ostream& os, int ind=0, const char* text=0,
33 int detail=0) const;
34
35 protected:
36 virtual void AttachDone();
37 virtual void DetachDone();
38
39 protected:
40 TC* fpCntl;
41 };
42
43} // end namespace Retro
44
45#include "Rw11UnitTapeBase.ipp"
46
47#endif
Implemenation (inline) of Rw11UnitTapeBase.
virtual void AttachDone()
FIXME_docs.
virtual void DetachDone()
FIXME_docs.
TC & Cntl() const
FIXME_docs.
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