summaryrefslogtreecommitdiff
path: root/src/fake_monitor.hh
blob: bb5cdc930a555994c2203516e8e0e796eb0dee86 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef FAKE_MONITOR_HH
#define FAKE_MONITOR_HH

#include "monitor.hh"

class FakeMonitor : public Monitor {
public:
  static std::unique_ptr<Monitor> create(std::shared_ptr<Looper> const& looper);
};

#endif  // FAKE_MONITOR_HH