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