w11 - cpp 0.794
Backend server for Rlink and w11
Loading...
Searching...
No Matches
RosFill.ipp
Go to the documentation of this file.
1// $Id: RosFill.ipp 1186 2019-07-12 17:49:59Z mueller $
2// SPDX-License-Identifier: GPL-3.0-or-later
3// Copyright 2000-2011 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
4//
5// Revision History:
6// Date Rev Version Comment
7// 2011-01-30 359 1.0 Adopted from CTBosFill
8// 2000-02-06 - - Last change on CTBosFill
9// ---------------------------------------------------------------------------
10
15// all method definitions in namespace Retro
16namespace Retro {
17
18//------------------------------------------+-----------------------------------
20
27inline RosFill::RosFill(int count, char fill)
28 : fCount(count),
29 fFill(fill)
30{}
31
32//------------------------------------------+-----------------------------------
34
35inline int RosFill::Count() const
36{
37 return fCount;
38}
39
40//------------------------------------------+-----------------------------------
42
43inline char RosFill::Fill() const
44{
45 return fFill;
46}
47
48} // end namespace Retro
char fFill
fill character
Definition: RosFill.hpp:33
int fCount
blank count
Definition: RosFill.hpp:32
RosFill(int count=0, char fill=' ')
Constructor.
Definition: RosFill.ipp:27
int Count() const
Get repeat count.
Definition: RosFill.ipp:35
char Fill() const
Get fill character.
Definition: RosFill.ipp:43
Declaration of class ReventLoop.
Definition: ReventLoop.cpp:47