2007-08-20 16:16:15 -04:00
|
|
|
/*** BEGIN file-header ***/
|
|
|
|
#include "clutter-enum-types.h"
|
|
|
|
/*** END file-header ***/
|
|
|
|
|
|
|
|
/*** BEGIN file-production ***/
|
|
|
|
/* enumerations from "@filename@" */
|
|
|
|
#include "@filename@"
|
|
|
|
/*** END file-production ***/
|
|
|
|
|
|
|
|
/*** BEGIN value-header ***/
|
|
|
|
GType
|
|
|
|
@enum_name@_get_type(void) {
|
2007-12-24 09:52:41 -05:00
|
|
|
static GType etype = 0;
|
|
|
|
if (G_UNLIKELY (!etype))
|
2007-08-20 16:16:15 -04:00
|
|
|
{
|
|
|
|
static const G@Type@Value values[] = {
|
|
|
|
/*** END value-header ***/
|
|
|
|
|
|
|
|
/*** BEGIN value-production ***/
|
|
|
|
{ @VALUENAME@, "@VALUENAME@", "@valuenick@" },
|
|
|
|
/*** END value-production ***/
|
|
|
|
|
|
|
|
/*** BEGIN value-tail ***/
|
|
|
|
{ 0, NULL, NULL }
|
|
|
|
};
|
2007-12-24 09:52:41 -05:00
|
|
|
etype = g_@type@_register_static (g_intern_static_string ("@EnumName@"), values);
|
2007-08-20 16:16:15 -04:00
|
|
|
}
|
2007-12-25 06:41:10 -05:00
|
|
|
return etype;
|
2007-08-20 16:16:15 -04:00
|
|
|
}
|
|
|
|
/*** END value-tail ***/
|