ppap4lmp  0.7.2
py_invoker.cpp
Go to the documentation of this file.
1 
8 #include "py_invoker.h"
9 
10 void pybind::py_invoker(py::module &m)
11 {
12  py::class_<
13  Invoker,PyInvoker<>,ShPtr<Invoker>>(m, "Invoker")
14  .def(py::init<>());
15 }
This file is for binding Invoker class to Python.
void py_invoker(py::module &m)
Bind Invoker class to Python.
Definition: py_invoker.cpp:10
Invoker executes analysis programmed in one or more Processor objects.
Definition: invoker.h:18
Trampoline class to bind Invoker class and its subclasses to Python.
Definition: py_invoker.h:22
std::shared_ptr< T > ShPtr
ShPtr is an alias for shared pointer.
Definition: std.h:16