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