1 
2 /* This file is generated by glib-mkenums, do not modify it. This code is licensed under the same license as the containing project. Note that it links to GLib, so must comply with the LGPL linking clauses. */
3 
4 #include <glib-object.h>
5 #include "clock-typebuiltins.h"
6 
7 /* enumerations from "../../applets/clock/clock-utils.h" */
8 #include "../../applets/clock/clock-utils.h"
9 static const GEnumValue _clock_format_values[] = {
10   { CLOCK_FORMAT_INVALID, "CLOCK_FORMAT_INVALID", "invalid" },
11   { CLOCK_FORMAT_12, "CLOCK_FORMAT_12", "12" },
12   { CLOCK_FORMAT_24, "CLOCK_FORMAT_24", "24" },
13   { CLOCK_FORMAT_UNIX, "CLOCK_FORMAT_UNIX", "unix" },
14   { CLOCK_FORMAT_INTERNET, "CLOCK_FORMAT_INTERNET", "internet" },
15   { CLOCK_FORMAT_CUSTOM, "CLOCK_FORMAT_CUSTOM", "custom" },
16   { 0, NULL, NULL }
17 };
18 
19 GType
clock_format_get_type(void)20 clock_format_get_type (void)
21 {
22   static GType type = 0;
23 
24   if (!type)
25     type = g_enum_register_static ("ClockFormat", _clock_format_values);
26 
27   return type;
28 }
29 
30 /* Generated data ends here */
31 
32