Move plugin init code
[gnumeric.git] / src / gnm-cell-combo.h
blobc34b68963a09b310b655064b3ed0eee7cd96cb82
1 #ifndef _GNM_CELL_COMBO_H_
2 # define _GNM_CELL_COMBO_H_
4 #include <sheet-object-impl.h>
6 G_BEGIN_DECLS
8 typedef struct {
9 SheetObject parent;
11 SheetView *sv;
12 } GnmCellCombo;
13 typedef SheetObjectClass GnmCellComboClass;
15 #define GNM_CELL_COMBO_TYPE (gnm_cell_combo_get_type ())
16 #define GNM_CELL_COMBO(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GNM_CELL_COMBO_TYPE, GnmCellCombo))
18 GType gnm_cell_combo_get_type (void);
20 G_END_DECLS
22 #endif /* _GNM_CELL_COMBO_H_ */