diff options
Diffstat (limited to 'src/uca-enums.h.template')
-rw-r--r-- | src/uca-enums.h.template | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/uca-enums.h.template b/src/uca-enums.h.template new file mode 100644 index 0000000..e9d00b9 --- /dev/null +++ b/src/uca-enums.h.template @@ -0,0 +1,25 @@ +/*** BEGIN file-header ***/ + +#ifndef UCA_ENUMS_H +#define UCA_ENUMS_H + +#include <glib-object.h> + +G_BEGIN_DECLS +/*** END file-header ***/ + +/*** BEGIN file-production ***/ + +/* enumerations from "@filename@" */ +/*** END file-production ***/ + +/*** BEGIN value-header ***/ +GType @enum_name@_get_type (void) G_GNUC_CONST; +#define UCA_TYPE_@ENUMSHORT@ (@enum_name@_get_type ()) +/*** END value-header ***/ + +/*** BEGIN file-tail ***/ +G_END_DECLS + +#endif /* !UCA_ENUMS_H */ +/*** END file-tail ***/ |