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