ppap4lmp  0.7.2
py_sta_molecules.cpp
Go to the documentation of this file.
1 
8 #include "py_sta_molecules.h"
9 
10 void pybind::py_sta_molecules(py::module &m)
11 {
12  py::class_<StaMolecules,PyUpdater<StaMolecules>,Starter,Updater,ShPtr<StaMolecules>>(m, "StaMolecules")
13  .def(py::init<const ElPtr &>());
14 }
This file is for binding StaMolecules class to Python.
Updater is an abstract class to update data held by an Element object.
Definition: updater.h:34
void py_sta_molecules(py::module &m)
Bind StaMolecules 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