summaryrefslogtreecommitdiff
path: root/src/icecc.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/icecc.hh')
-rw-r--r--src/icecc.hh21
1 files changed, 21 insertions, 0 deletions
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 <memory>
+
+#include "monmon.hh"
+
+class Args;
+
+class IceccMonMon : public MonMon {
+public:
+ virtual void connect(Args const* args) = 0;
+
+protected:
+ IceccMonMon(std::shared_ptr<PollLooper> const& looper);
+};
+
+std::unique_ptr<IceccMonMon> create_icecc_monmon(
+ std::shared_ptr<PollLooper> const& looper, unsigned columns);
+
+#endif // ICECC_HH