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