1/*** BEGIN file-header ***/
2#include "dh-enum-types.h"
3#include "dh-assistant.h"
4#include "dh-assistant-view.h"
5#include "dh-base.h"
6#include "dh-book-manager.h"
7#include "dh-book.h"
8#include "dh-book-tree.h"
9#include "dh-error.h"
10#include "dh-keyword-model.h"
11#include "dh-link.h"
12#include "dh-search.h"
13#include "dh-window.h"
14/*** END file-header ***/
15
16/*** BEGIN file-production ***/
17
18/*** END file-production ***/
19
20/*** BEGIN value-header ***/
21GType
22@enum_name@_get_type (void)
23{
24	static GType the_type = 0;
25
26	if (the_type == 0)
27	{
28		static const G@Type@Value values[] = {
29/*** END value-header ***/
30
31/*** BEGIN value-production ***/
32			{ @VALUENAME@,
33			  "@VALUENAME@",
34			  "@valuenick@" },
35/*** END value-production ***/
36
37/*** BEGIN value-tail ***/
38			{ 0, NULL, NULL }
39		};
40		the_type = g_@type@_register_static (
41				g_intern_static_string ("@EnumName@"),
42				values);
43	}
44	return the_type;
45}
46
47/*** END value-tail ***/
48