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