summaryrefslogtreecommitdiff
path: root/src/goma.hh
diff options
context:
space:
mode:
authorJoel Klinghed <the_jk@opera.com>2020-07-17 15:34:59 +0200
committerJoel Klinghed <the_jk@opera.com>2020-07-17 15:34:59 +0200
commita1566d1ca182c1714fb5cdb4540adc9afacef5bf (patch)
tree408baa4032d893231fdb961f6e8fa3cbc2856f97 /src/goma.hh
parent7b459f749b317456c5c528ea7f44dfe5869fbfd0 (diff)
Add GOMA support
Diffstat (limited to 'src/goma.hh')
-rw-r--r--src/goma.hh12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/goma.hh b/src/goma.hh
new file mode 100644
index 0000000..9c4fe3e
--- /dev/null
+++ b/src/goma.hh
@@ -0,0 +1,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