REDAC HybridController
Firmware for LUCIDAC/REDAC Teensy
Loading...
Searching...
No Matches
drivers.h
Go to the documentation of this file.
1#include "run/run.h"
2
3namespace run {
4namespace drivers {
5
6 class DummyDemoRun : public Run {
7 using Run::Run;
8 void run() override;
9 };
10
11 class SimulatedRun : public Run {
12 using Run::Run;
13 void run() override;
14 };
15
16} // ns drivers
17} // ns run
Definition drivers.h:3