w11 - cpp 0.794
Backend server for Rlink and w11
Loading...
Searching...
No Matches
RtclSystem.hpp
Go to the documentation of this file.
1// $Id: RtclSystem.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-05-17 521 1.0 Initial version
8// ---------------------------------------------------------------------------
9
14#ifndef included_Retro_RtclSystem
15#define included_Retro_RtclSystem 1
16
17#include "tcl.h"
18
19namespace Retro {
20
21 class RtclSystem {
22 public:
23 static void CreateCmds(Tcl_Interp* interp);
24
25 static int Isatty(ClientData cdata, Tcl_Interp* interp,
26 int objc, Tcl_Obj* const objv[]);
27 static int SignalAction(ClientData cdata, Tcl_Interp* interp,
28 int objc, Tcl_Obj* const objv[]);
29 static int WaitPid(ClientData cdata, Tcl_Interp* interp,
30 int objc, Tcl_Obj* const objv[]);
31
32 private:
33 };
34
35} // end namespace Retro
36
37//#include "RtclSystem.ipp"
38
39#endif
FIXME_docs.
Definition: RtclSystem.hpp:21
static int Isatty(ClientData cdata, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
FIXME_docs.
Definition: RtclSystem.cpp:63
static int WaitPid(ClientData cdata, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
FIXME_docs.
Definition: RtclSystem.cpp:203
static void CreateCmds(Tcl_Interp *interp)
FIXME_docs.
Definition: RtclSystem.cpp:49
static int SignalAction(ClientData cdata, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[])
FIXME_docs.
Definition: RtclSystem.cpp:110
Declaration of class ReventLoop.
Definition: ReventLoop.cpp:47