#include "python-options.h"#include "python-types.h"#include "python-helpers.h"#include "python-logtemplate.h"#include "str-utils.h"#include "string-list.h"#include "atomic.h"
Classes | |
| struct | PythonOption |
| struct | PythonOptionString |
| struct | PythonOptionLong |
| struct | PythonOptionDouble |
| struct | PythonOptionBoolean |
| struct | PythonOptionStringList |
| struct | PythonOptionTemplate |
| struct | PythonOptions |
Functions | |
| const gchar * | python_option_get_name (const PythonOption *s) |
| PyObject * | python_option_create_value_py_object (const PythonOption *s) |
| PythonOption * | python_option_ref (PythonOption *s) |
| void | python_option_unref (PythonOption *s) |
| PythonOption * | python_option_string_new (const gchar *name, const gchar *value) |
| PythonOption * | python_option_long_new (const gchar *name, gint64 value) |
| PythonOption * | python_option_double_new (const gchar *name, gdouble value) |
| PythonOption * | python_option_boolean_new (const gchar *name, gboolean value) |
| PythonOption * | python_option_string_list_new (const gchar *name, const GList *value) |
| PythonOption * | python_option_template_new (const gchar *name, const gchar *value) |
| PythonOptions * | python_options_new (void) |
| PythonOptions * | python_options_clone (const PythonOptions *self) |
| void | python_options_add_option (PythonOptions *self, PythonOption *option) |
| PyObject * | python_options_create_py_dict (const PythonOptions *self) |
| void | python_options_free (PythonOptions *self) |
| PythonOption* python_option_boolean_new | ( | const gchar * | name, |
| gboolean | value | ||
| ) |
| PyObject* python_option_create_value_py_object | ( | const PythonOption * | s | ) |
| PythonOption* python_option_double_new | ( | const gchar * | name, |
| gdouble | value | ||
| ) |
| const gchar* python_option_get_name | ( | const PythonOption * | s | ) |
| PythonOption* python_option_long_new | ( | const gchar * | name, |
| gint64 | value | ||
| ) |
| PythonOption* python_option_ref | ( | PythonOption * | s | ) |
| PythonOption* python_option_string_list_new | ( | const gchar * | name, |
| const GList * | value | ||
| ) |
| PythonOption* python_option_string_new | ( | const gchar * | name, |
| const gchar * | value | ||
| ) |
| PythonOption* python_option_template_new | ( | const gchar * | name, |
| const gchar * | value | ||
| ) |
| void python_option_unref | ( | PythonOption * | s | ) |
| void python_options_add_option | ( | PythonOptions * | self, |
| PythonOption * | option | ||
| ) |
| PythonOptions* python_options_clone | ( | const PythonOptions * | self | ) |
| PyObject* python_options_create_py_dict | ( | const PythonOptions * | self | ) |
| void python_options_free | ( | PythonOptions * | self | ) |
| PythonOptions* python_options_new | ( | void | ) |