w11 - cpp 0.794
Backend server for Rlink and w11
Loading...
Searching...
No Matches
Rw11.ipp
Go to the documentation of this file.
1// $Id: Rw11.ipp 1186 2019-07-12 17:49:59Z mueller $
2// SPDX-License-Identifier: GPL-3.0-or-later
3// Copyright 2013-2018 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
4//
5// Revision History:
6// Date Rev Version Comment
7// 2018-12-07 1078 1.0.1 use std::shared_ptr instead of boost
8// 2013-03-06 495 1.0 Initial version
9// 2013-01-27 478 0.1 First draft
10// ---------------------------------------------------------------------------
11
16// all method definitions in namespace Retro
17namespace Retro {
18
19//------------------------------------------+-----------------------------------
21
22inline const std::shared_ptr<RlinkServer>& Rw11::ServerSPtr() const
23{
24 return fspServ;
25}
26
27//------------------------------------------+-----------------------------------
29
31{
32 return *fspServ;
33}
34
35//------------------------------------------+-----------------------------------
37
39{
40 return fspServ->Connect();
41}
42
43//------------------------------------------+-----------------------------------
45
46inline RlogFile& Rw11::LogFile() const
47{
48 return fspServ->LogFile();
49}
50
51//------------------------------------------+-----------------------------------
53
54inline size_t Rw11::NCpu() const
55{
56 return fNCpu;
57}
58
59//------------------------------------------+-----------------------------------
61
62inline bool Rw11::IsStarted() const
63{
64 return fStarted;
65}
66
67
68} // end namespace Retro
FIXME_docs.
Definition: RlogFile.hpp:34
std::shared_ptr< RlinkServer > fspServ
Definition: Rw11.hpp:63
RlinkConnect & Connect() const
FIXME_docs.
Definition: Rw11.ipp:38
size_t NCpu() const
FIXME_docs.
Definition: Rw11.ipp:54
const std::shared_ptr< RlinkServer > & ServerSPtr() const
FIXME_docs.
Definition: Rw11.ipp:22
RlinkServer & Server() const
FIXME_docs.
Definition: Rw11.ipp:30
RlogFile & LogFile() const
FIXME_docs.
Definition: Rw11.ipp:46
size_t fNCpu
Definition: Rw11.hpp:64
bool fStarted
true if Start() called
Definition: Rw11.hpp:66
bool IsStarted() const
FIXME_docs.
Definition: Rw11.ipp:62
Declaration of class ReventLoop.
Definition: ReventLoop.cpp:47