summaryrefslogtreecommitdiff
path: root/tools/fake-scope.h
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2022-10-19 12:13:29 -0400
committerMatthias Clasen <mclasen@redhat.com>2022-10-19 13:36:14 -0400
commit637713fe723e0722fdcf8acfb779a4e452f219c0 (patch)
treedfa8f577fa288a26e2b9f1f179a4460f7e8ee330 /tools/fake-scope.h
parent7e71c868aba105d40b957a13fd06258d705c86c4 (diff)
downloadgtk+-637713fe723e0722fdcf8acfb779a4e452f219c0.tar.gz
buildertool: Add a builder scope implementation
This will be used in future commits.
Diffstat (limited to 'tools/fake-scope.h')
-rw-r--r--tools/fake-scope.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/fake-scope.h b/tools/fake-scope.h
new file mode 100644
index 0000000000..05234129b8
--- /dev/null
+++ b/tools/fake-scope.h
@@ -0,0 +1,9 @@
+#pragma once
+
+#include <gtk.h>
+
+G_DECLARE_FINAL_TYPE (FakeScope, fake_scope, FAKE, SCOPE, GtkBuilderCScope)
+
+FakeScope * fake_scope_new (void);
+GPtrArray * fake_scope_get_types (FakeScope *self);
+GPtrArray * fake_scope_get_callbacks (FakeScope *self);