From c8fd8d3c3f12e6895246c5a0566a9f595ce5db20 Mon Sep 17 00:00:00 2001 From: Joel Klinghed Date: Fri, 17 Jul 2020 11:56:29 +0200 Subject: Move Icecc MonMon out of main --- src/icecc.hh | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/icecc.hh (limited to 'src/icecc.hh') diff --git a/src/icecc.hh b/src/icecc.hh new file mode 100644 index 0000000..2b3cdf0 --- /dev/null +++ b/src/icecc.hh @@ -0,0 +1,21 @@ +#ifndef ICECC_HH +#define ICECC_HH + +#include + +#include "monmon.hh" + +class Args; + +class IceccMonMon : public MonMon { +public: + virtual void connect(Args const* args) = 0; + +protected: + IceccMonMon(std::shared_ptr const& looper); +}; + +std::unique_ptr create_icecc_monmon( + std::shared_ptr const& looper, unsigned columns); + +#endif // ICECC_HH -- cgit v1.3