1 /*** BEGIN file-header ***/
2 #include "mp-serializer.h"
5 /*** END file-header ***/
7 /*** BEGIN file-production ***/
8 /* enumerations from "@filename@" */
9 /*** END file-production ***/
11 /*** BEGIN value-header ***/
13 math_@enum_name@_get_type (void)
15 static GType etype = 0;
16 if (G_UNLIKELY(etype == 0)) {
17 static const G@Type@Value values[] = {
18 /*** END value-header ***/
20 /*** BEGIN value-production ***/
21 { @VALUENAME@, "@VALUENAME@", "@valuenick@" },
22 /*** END value-production ***/
24 /*** BEGIN value-tail ***/
27 etype = g_@type@_register_static (g_intern_static_string ("@EnumName@"), values);
32 /*** END value-tail ***/
34 /*** BEGIN file-tail ***/
36 /*** END file-tail ***/