mirror of
https://github.com/Electrostatics/apbs.git
synced 2026-06-04 20:54:22 +08:00
8 lines
122 B
C++
8 lines
122 B
C++
#include "bind_valist.hpp"
|
|
|
|
void bind_valist(py::module& m)
|
|
{
|
|
py::class_<Valist>(m, "Valist")
|
|
.def(py::init<>());
|
|
}
|