w11 - cpp 0.794
Backend server for Rlink and w11
Loading...
Searching...
No Matches
Rw11VirtDiskBuffer.ipp
Go to the documentation of this file.
1// $Id: Rw11VirtDiskBuffer.ipp 1186 2019-07-12 17:49:59Z mueller $
2// SPDX-License-Identifier: GPL-3.0-or-later
3// Copyright 2017- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
4//
5// Revision History:
6// Date Rev Version Comment
7// 2017-03-10 859 1.0 Initial version
8// ---------------------------------------------------------------------------
9
14// all method definitions in namespace Retro
15namespace Retro {
16
17//------------------------------------------+-----------------------------------
19
20inline size_t Rw11VirtDiskBuffer::BlockSize() const
21{
22 return fBuf.size();
23}
24
25//------------------------------------------+-----------------------------------
27
28inline uint8_t* Rw11VirtDiskBuffer::Data()
29{
30 return fBuf.data();
31}
32
33//------------------------------------------+-----------------------------------
35
36inline const uint8_t* Rw11VirtDiskBuffer::Data() const
37{
38 return fBuf.data();
39}
40
41//------------------------------------------+-----------------------------------
43
44inline uint32_t Rw11VirtDiskBuffer::NWrite() const
45{
46 return fNWrite;
47}
48
49} // end namespace Retro
std::vector< uint8_t > fBuf
uint32_t NWrite() const
FIXME_docs.
uint8_t * Data()
FIXME_docs.
size_t BlockSize() const
FIXME_docs.
Declaration of class ReventLoop.
Definition: ReventLoop.cpp:47