Ejemplo n.º 1
0
static void clock_component_def_class_init (ClockComponentDefClass * klass) {
	clock_component_def_parent_class = g_type_class_peek_parent (klass);
	COMPONENT_DEF_CLASS (klass)->add_properties = clock_component_def_real_add_properties;
	COMPONENT_DEF_CLASS (klass)->get_properties = clock_component_def_real_get_properties;
	COMPONENT_DEF_CLASS (klass)->load_properties = clock_component_def_real_load_properties;
	COMPONENT_DEF_CLASS (klass)->save_properties = clock_component_def_real_save_properties;
	COMPONENT_DEF_CLASS (klass)->compile_component = clock_component_def_real_compile_component;
}
Ejemplo n.º 2
0
static void constant_component_def_class_init (ConstantComponentDefClass * klass) {
	constant_component_def_parent_class = g_type_class_peek_parent (klass);
	COMPONENT_DEF_CLASS (klass)->add_properties = constant_component_def_real_add_properties;
	COMPONENT_DEF_CLASS (klass)->get_properties = constant_component_def_real_get_properties;
	COMPONENT_DEF_CLASS (klass)->load_properties = constant_component_def_real_load_properties;
	COMPONENT_DEF_CLASS (klass)->save_properties = constant_component_def_real_save_properties;
	COMPONENT_DEF_CLASS (klass)->compile_component = constant_component_def_real_compile_component;
	COMPONENT_DEF_CLASS (klass)->extra_render = constant_component_def_real_extra_render;
}
Ejemplo n.º 3
0
static void tristate_component_def_class_init (TristateComponentDefClass * klass) {
    tristate_component_def_parent_class = g_type_class_peek_parent (klass);
    COMPONENT_DEF_CLASS (klass)->compile_component = tristate_component_def_real_compile_component;
}
Ejemplo n.º 4
0
static void pe_dflipflop_component_def_class_init (PeDFlipflopComponentDefClass * klass) {
    pe_dflipflop_component_def_parent_class = g_type_class_peek_parent (klass);
    COMPONENT_DEF_CLASS (klass)->compile_component = pe_dflipflop_component_def_real_compile_component;
}
Ejemplo n.º 5
0
static void plugin_component_def_finalize (ComponentDef* obj) {
	PluginComponentDef * self;
	self = G_TYPE_CHECK_INSTANCE_CAST (obj, TYPE_PLUGIN_COMPONENT_DEF, PluginComponentDef);
	_plugin_component_manager_unref0 (self->manager);
	COMPONENT_DEF_CLASS (plugin_component_def_parent_class)->finalize (obj);
}
Ejemplo n.º 6
0
static void plugin_component_def_class_init (PluginComponentDefClass * klass) {
	plugin_component_def_parent_class = g_type_class_peek_parent (klass);
	COMPONENT_DEF_CLASS (klass)->finalize = plugin_component_def_finalize;
}
Ejemplo n.º 7
0
static void buffer_component_def_class_init (BufferComponentDefClass * klass) {
	buffer_component_def_parent_class = g_type_class_peek_parent (klass);
	COMPONENT_DEF_CLASS (klass)->compile_component = buffer_component_def_real_compile_component;
}