diff options
Diffstat (limited to 'enumtypes.h.template')
-rw-r--r-- | enumtypes.h.template | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/enumtypes.h.template b/enumtypes.h.template new file mode 100644 index 0000000000..e421eddbe7 --- /dev/null +++ b/enumtypes.h.template @@ -0,0 +1,24 @@ +/*** BEGIN file-header ***/ +/*** END file-header ***/ + +/*** BEGIN file-production ***/ + +#include <glib-object.h> + +G_BEGIN_DECLS + +/* Enumerations from "@filename@" */ + +/*** END file-production ***/ + +/*** BEGIN enumeration-production ***/ +#define @ENUMPREFIX@_TYPE_@ENUMSHORT@ (@enum_name@_get_type()) +GType @enum_name@_get_type (void) G_GNUC_CONST; + +/*** END enumeration-production ***/ + +/*** BEGIN file-tail ***/ +G_END_DECLS + +/*** END file-tail ***/ + |