diff options
Diffstat (limited to 'src/fake_monitor.hh')
| -rw-r--r-- | src/fake_monitor.hh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/fake_monitor.hh b/src/fake_monitor.hh new file mode 100644 index 0000000..836e082 --- /dev/null +++ b/src/fake_monitor.hh @@ -0,0 +1,11 @@ +#ifndef FAKE_MONITOR_HH +#define FAKE_MONITOR_HH + +#include "monitor.hh" + +class FakeMonitor : public Monitor { +public: + static Monitor* create(std::shared_ptr<Looper> const& looper); +}; + +#endif // FAKE_MONITOR_HH |
