Introspection fix
[gnumeric.git] / plugins / python-loader / py-interpreter-selector.h
blob56e7528acf721d554ab009290a3e9530873a23b6
1 #ifndef PY_INTERPRETER_SELECTOR
2 #define PY_INTERPRETER_SELECTOR
4 #include <glib.h>
5 #include <gnumeric.h>
6 #include <goffice/goffice.h>
7 #include "gnm-py-interpreter.h"
9 #define GNM_PY_INTERPRETER_SELECTOR_TYPE (gnm_py_interpreter_selector_get_type ())
10 #define GNM_PY_INTERPRETER_SELECTOR(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GNM_PY_INTERPRETER_SELECTOR_TYPE, GnmPyInterpreterSelector))
11 #define GNM_IS_PY_INTERPRETER_SELECTOR(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GNM_PY_INTERPRETER_SELECTOR_TYPE))
13 GType gnm_py_interpreter_selector_get_type (void);
14 typedef struct _GnmPyInterpreterSelector GnmPyInterpreterSelector;
16 GtkWidget *gnm_py_interpreter_selector_new (GOErrorInfo **err);
17 GnmPyInterpreter *gnm_py_interpreter_selector_get_current (GnmPyInterpreterSelector *sel);
19 #endif /* PY_INTERPRETER_SELECTOR */