build: let enum and error templates be completely generic

Don't include anything in the templates specific to the file to be built, like
#ifdef guards in headers or #include in sources.
This commit is contained in:
Aleksander Morgado
2011-12-19 17:24:33 +01:00
parent 4b8b99ee96
commit d22def9309
6 changed files with 19 additions and 25 deletions

View File

@@ -0,0 +1,40 @@
/*** BEGIN file-header ***/
/*** END file-header ***/
/*** BEGIN file-production ***/
/* enumerations from "@filename@" */
/*** END file-production ***/
/*** BEGIN value-header ***/
/* @enum_name@_quark() implemented in mm-errors-quarks.c */
GType
@enum_name@_get_type (void)
{
static volatile gsize g_define_type_id__volatile = 0;
if (g_once_init_enter (&g_define_type_id__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 g_define_type_id =
g_@type@_register_static (g_intern_static_string ("@EnumName@"), values);
g_once_init_leave (&g_define_type_id__volatile, g_define_type_id);
}
return g_define_type_id__volatile;
}
/*** END value-tail ***/
/*** BEGIN file-tail ***/
/*** END file-tail ***/