add toolbutton_goto_reflection_clicked_cb
[hkl.git] / hkl / hkl-type-builtins.c.template
blob8028ea41def10ad1535b7643d9084a39c156335e
1 /*** BEGIN file-header ***/
2 #undef HKL_DISABLE_DEPRECATED
3 #define HKL_ENABLE_BROKEN
4 #include <glib-object.h>
5 #include "hkl.h"
6 #include "hkl-type-builtins.h"
7 /*** END file-header ***/
9 /*** BEGIN file-production ***/
10 /* enumerations from "@filename@" */
11 /*** END file-production ***/
13 /*** BEGIN value-header ***/
14 GType
15 @enum_name@_get_type (void)
17     static GType etype = 0;
18     if (G_UNLIKELY(etype == 0)) {
19         static const G@Type@Value values[] = {
20 /*** END value-header ***/
22 /*** BEGIN value-production ***/
23             { @VALUENAME@, "@VALUENAME@", "@valuenick@" },
24 /*** END value-production ***/
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;
34 /*** END value-tail ***/
36 /*** BEGIN file-tail ***/
37 #define __HKL_TYPE_BUILTINS_C__
38 /*** END file-tail ***/