#include "btf/btf.h"
#include "libhelper_binding.h"
#include <pybind11/operators.h>
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>
Functions | |
PYBIND11_MODULE (pybtf, m) | |
Macro that creates a function that will be called when the module pybtf is imported within python. It enables the creation of Python bindings for the C++ code of the BTF lib. More... | |
PYBIND11_MODULE | ( | pybtf | , |
m | |||
) |
Macro that creates a function that will be called when the module pybtf is imported within python. It enables the creation of Python bindings for the C++ code of the BTF lib.
[in] | name | Name of the python module the C++ source code is linked to. |
[in] | variable | Module interface for creating binding code. |