summaryrefslogtreecommitdiff
path: root/src/fake_monitor.hh
diff options
context:
space:
mode:
authorJoel Klinghed <the_jk@yahoo.com>2017-09-26 20:09:31 +0200
committerJoel Klinghed <the_jk@yahoo.com>2017-09-26 20:09:31 +0200
commitc85b624d28564a6f785b25000e2b7825592a919d (patch)
tree647b756c824b470b35f1371eb869e9534ed6c1bb /src/fake_monitor.hh
Initial commit
Diffstat (limited to 'src/fake_monitor.hh')
-rw-r--r--src/fake_monitor.hh11
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