Coccinelle release-1.0.0-rc11
[bpt/coccinelle.git] / tests / ben.res
1 static GType this_type = 0;
2 static const GTypeInfo this_info = {
3 sizeof(LassoProviderClass),
4 NULL,
5 NULL,
6 (GClassInitFunc)class_init,
7 NULL,
8 NULL,
9 sizeof(LassoProvider),
10 0,
11 (GInstanceInitFunc)instance_init,
12 NULL,
13 };
14 GType
15 lasso_provider_get_type()
16 {
17
18 if (!this_type) {
19
20 this_type = g_type_register_static(LASSO_TYPE_NODE,
21 "LassoProvider", &this_info, 0);
22 }
23 return this_type;
24 }