w11 - cpp 0.794
Backend server for Rlink and w11
Loading...
Searching...
No Matches
RlinkServerEventLoop.hpp
Go to the documentation of this file.
1// $Id: RlinkServerEventLoop.hpp 1186 2019-07-12 17:49:59Z mueller $
2// SPDX-License-Identifier: GPL-3.0-or-later
3// Copyright 2013- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
4//
5// Revision History:
6// Date Rev Version Comment
7// 2013-01-11 473 1.0 Initial version
8// ---------------------------------------------------------------------------
9
10
15#ifndef included_Retro_RlinkServerEventLoop
16#define included_Retro_RlinkServerEventLoop 1
17
18#include <cstdint>
19
20#include "ReventLoop.hpp"
21
22namespace Retro {
23
24 class RlinkServer; // forward dcl
25
27 public:
29 virtual ~RlinkServerEventLoop();
30
31 virtual void EventLoop();
32
33 protected:
35};
36
37} // end namespace Retro
38
39//#include "RlinkServerEventLoop.ipp"
40
41#endif
FIXME_docs.
Definition: ReventLoop.hpp:39
virtual ~RlinkServerEventLoop()
Destructor.
virtual void EventLoop()
FIXME_docs.
Declaration of class ReventLoop.
Definition: ReventLoop.cpp:47