ppap4lmp  0.7.2
py_add_bond_length.cpp
Go to the documentation of this file.
1 
8 #include "py_add_bond_length.h"
9 
10 void pybind::py_add_bond_length(py::module &m)
11 {
12  py::class_<AddBondLength,PyUpdater<AddBondLength>,Adder,Updater,ShPtr<AddBondLength>>(m, "AddBondLength")
13  .def(py::init<const ElPtr &>());
14 }
void py_add_bond_length(py::module &m)
Bind AddBondLength class to Python.
Updater is an abstract class to update data held by an Element object.
Definition: updater.h:34
Adder adds new properties to a non-empty Element object.
Definition: adder.h:24
This file is for binding AddBondLength class to Python.
std::shared_ptr< T > ShPtr
ShPtr is an alias for shared pointer.
Definition: std.h:16