summaryrefslogtreecommitdiff
path: root/src/libostree/ostree-enumtypes.c.template
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2015-11-09 19:04:42 -0500
committerMatthew Barnes <mbarnes@redhat.com>2015-12-14 09:41:29 -0500
commitaf30fc764a25c1888968d3a69bfc9b8e377427c1 (patch)
tree68b83308c0b963ae72c1cf009a5b02d72b9b13b0 /src/libostree/ostree-enumtypes.c.template
parent96eed957205c5a318c2849100778d48aad748469 (diff)
downloadostree-af30fc764a25c1888968d3a69bfc9b8e377427c1.tar.gz
fetcher: Add "config-flags" construct-only property
A lot of effort here just to avoid touching SoupSession directly in ostree_fetcher_new(). The reason will become apparent in subsequent commits. Note this introduces generated enum/flags GTypes using glib-mkenums. I could have just made the property type as plain integer, but doing properties right will henceforth be easier now that the automake-fu is established.
Diffstat (limited to 'src/libostree/ostree-enumtypes.c.template')
-rw-r--r--src/libostree/ostree-enumtypes.c.template60
1 files changed, 60 insertions, 0 deletions
diff --git a/src/libostree/ostree-enumtypes.c.template b/src/libostree/ostree-enumtypes.c.template
new file mode 100644
index 00000000..fe8807ae
--- /dev/null
+++ b/src/libostree/ostree-enumtypes.c.template
@@ -0,0 +1,60 @@
+/*** BEGIN file-header ***/
+/*
+ * Copyright (C) 2015 Red Hat, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+/*** END file-header ***/
+
+/*** BEGIN file-production ***/
+/* enumerations from "@filename@" */
+#include "@filename@"
+
+/*** END file-production ***/
+
+/*** BEGIN value-header ***/
+GType
+@enum_name@_get_type (void)
+{
+ static volatile gsize the_type__volatile = 0;
+
+ if (g_once_init_enter (&the_type__volatile))
+ {
+ static const G@Type@Value values[] = {
+/*** END value-header ***/
+
+/*** BEGIN value-production ***/
+ { @VALUENAME@,
+ "@VALUENAME@",
+ "@valuenick@" },
+/*** END value-production ***/
+
+/*** BEGIN value-tail ***/
+ { 0, NULL, NULL }
+ };
+
+ GType the_type = g_@type@_register_static (
+ g_intern_static_string ("@EnumName@"),
+ values);
+
+ g_once_init_leave (&the_type__volatile, the_type);
+ }
+
+ return the_type__volatile;
+}
+
+/*** END value-tail ***/