aboutsummaryrefslogtreecommitdiffstats
path: root/autoarchive/autoar-enum-types.c.template
diff options
context:
space:
mode:
Diffstat (limited to 'autoarchive/autoar-enum-types.c.template')
-rw-r--r--autoarchive/autoar-enum-types.c.template36
1 files changed, 0 insertions, 36 deletions
diff --git a/autoarchive/autoar-enum-types.c.template b/autoarchive/autoar-enum-types.c.template
deleted file mode 100644
index 96aee6258..000000000
--- a/autoarchive/autoar-enum-types.c.template
+++ /dev/null
@@ -1,36 +0,0 @@
-/*** BEGIN file-header ***/
-#include "autoar-enum-types.h"
-
-/*** END file-header ***/
-
-/*** BEGIN file-production ***/
-/* enumerations from "@filename@" */
-#include "@filename@"
-
-/*** END file-production ***/
-
-/*** BEGIN value-header ***/
-GType
-@enum_name@_get_type (void)
-{
- static GType type = 0;
- if (G_UNLIKELY (!type))
- {
- static const G@Type@Value values[] = {
-/*** END value-header ***/
-
-/*** BEGIN value-production ***/
- { @VALUENAME@,
- "@VALUENAME@",
- "@valuenick@" },
-/*** END value-production ***/
-
-/*** BEGIN value-tail ***/
- { 0, NULL, NULL }
- };
- type = g_@type@_register_static ("@EnumName@", values);
- }
- return type;
-}
-
-/*** END value-tail ***/