8 #ifndef PYBIND_PROESSOR_H 9 #define PYBIND_PROESSOR_H 21 template <
class PRO = Processor>
25 const int index)
override 27 PYBIND11_OVERLOAD_PURE(
28 void, PRO, run_impl, index);
30 void use_generator_at(
const int i)
override 33 void, PRO, use_generator_at, i);
35 void finish_using_generator_at(
const int i)
override 38 void, PRO, finish_using_generator_at, i);
42 void prepare()
override 45 void, PRO, prepare, );
47 void finish()
override Trampoline class to bind Processor class and its subclasses to Python.
Namespace for functions to bind C++ classes to Python.
This file has a definition of Processor class, where an analysis process is programmed.
void py_processor(py::module &m)
Bind Processor class to Python.
This file includes pybind11 and defines an alias for the namespace pybind11.