Document libbabeltrace2's C API
[babeltrace.git] / src / bindings / python / bt2 / bt2 / native_bt_field_class.i
index e5ed2a89c379f713c7bcf2fc28edbb4ef82e9c4d..48f48c08217a3b8a8a332e7e649733641b027ce6 100644 (file)
 
 /* Parameter names seem to be required for multi-argument typemaps to match. */
 %typemap(in, numinputs=0)
-       (bt_field_class_enumeration_mapping_label_array *label_array, uint64_t *count)
+       (bt_field_class_enumeration_mapping_label_array *labels, uint64_t *count)
        (bt_field_class_enumeration_mapping_label_array temp_array, uint64_t temp_label_count = 0) {
        $1 = &temp_array;
        $2 = &temp_label_count;
 }
 
 %typemap(argout)
-       (bt_field_class_enumeration_mapping_label_array *label_array, uint64_t *count) {
+       (bt_field_class_enumeration_mapping_label_array *labels, uint64_t *count) {
        if (*$1) {
                PyObject *py_label_list = PyList_New(*$2);
-               for (int i = 0; i < *$2; i++) {
+               uint64_t i;
+
+               for (i = 0; i < *$2; i++) {
                        PyList_SET_ITEM(py_label_list, i, PyUnicode_FromString((*$1)[i]));
                }
 
        }
 }
 
-/* Output argument typemap for value output (always appends) */
-%typemap(in, numinputs=0)
-       (const bt_field_class_signed_enumeration_mapping_ranges **)
-       (bt_field_class_signed_enumeration_mapping_ranges *temp_value = NULL) {
-       $1 = &temp_value;
-}
-
-%typemap(argout)
-       (const bt_field_class_signed_enumeration_mapping_ranges **) {
-       if (*$1) {
-               /* SWIG_Python_AppendOutput() steals the created object */
-               $result = SWIG_Python_AppendOutput($result,
-                               SWIG_NewPointerObj(SWIG_as_voidptr(*$1),
-                                       SWIGTYPE_p_bt_field_class_signed_enumeration_mapping_ranges, 0));
-       } else {
-               /* SWIG_Python_AppendOutput() steals Py_None */
-               Py_INCREF(Py_None);
-               $result = SWIG_Python_AppendOutput($result, Py_None);
-       }
-}
-
-/* Output argument typemap for value output (always appends) */
-%typemap(in, numinputs=0)
-       (const bt_field_class_unsigned_enumeration_mapping_ranges **)
-       (bt_field_class_unsigned_enumeration_mapping_ranges *temp_value = NULL) {
-       $1 = &temp_value;
-}
-
-%typemap(argout)
-       (const bt_field_class_unsigned_enumeration_mapping_ranges **) {
-       if (*$1) {
-               /* SWIG_Python_AppendOutput() steals the created object */
-               $result = SWIG_Python_AppendOutput($result,
-                               SWIG_NewPointerObj(SWIG_as_voidptr(*$1),
-                                       SWIGTYPE_p_bt_field_class_unsigned_enumeration_mapping_ranges, 0));
-       } else {
-               /* SWIG_Python_AppendOutput() steals Py_None */
-               Py_INCREF(Py_None);
-               $result = SWIG_Python_AppendOutput($result, Py_None);
-       }
-}
-
-%include <babeltrace2/trace-ir/field-class-const.h>
 %include <babeltrace2/trace-ir/field-class.h>
This page took 0.023946 seconds and 4 git commands to generate.