1/*** BEGIN file-header ***/
2
3#include "config.h"
4#include "adw-enums-private.h"
5#include "adw-animation-private.h"
6
7/*** END file-header ***/
8
9/*** BEGIN file-production ***/
10/* enumerations from "@basename@" */
11/*** END file-production ***/
12
13/*** BEGIN value-header ***/
14GType
15@enum_name@_get_type (void)
16{
17    static GType etype = 0;
18    if (G_UNLIKELY(etype == 0)) {
19        static const G@Type@Value values[] = {
20/*** END value-header ***/
21
22/*** BEGIN value-production ***/
23            { @VALUENAME@, "@VALUENAME@", "@valuenick@" },
24/*** END value-production ***/
25
26/*** BEGIN value-tail ***/
27            { 0, NULL, NULL }
28        };
29        etype = g_@type@_register_static (g_intern_static_string ("@EnumName@"), values);
30    }
31    return etype;
32}
33
34/*** END value-tail ***/
35
36/*** BEGIN file-tail ***/
37
38/*** END file-tail ***/
39