blob: f061de638f9ac70db19c657d3de91dafebb71726 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef ICECC_HH
#define ICECC_HH
#include <memory>
class MonMon;
class PollLooper;
std::unique_ptr<MonMon> create_icecc_monmon(
std::shared_ptr<PollLooper> const& looper, unsigned columns);
#endif // ICECC_HH
|