PCB Environment
2
Loading...
Searching...
No Matches
pcbenv
cxx
Signals.hpp
1
#ifndef GYM_PCB_SIGNALS_H
2
#define GYM_PCB_SIGNALS_H
3
4
#include <stack>
5
8
class
SignalContext
9
{
10
public
:
11
void
install(
void
(*handler_fptr)(
int
));
12
void
restore();
13
private
:
14
std::stack<void(*)(int)> mStack;
15
};
16
17
#endif
// GYM_PCB_SIGNALS_H
SignalContext
Definition
Signals.hpp:9
Generated by
1.15.0