Nektar++
Functions
Python/Expansion.cpp File Reference
#include <LibUtilities/Python/NekPyConfig.hpp>
#include <LocalRegions/Expansion.h>

Go to the source code of this file.

Functions

void export_Expansion (py::module &m)
 

Function Documentation

◆ export_Expansion()

void export_Expansion ( py::module &  m)

Definition at line 43 of file Python/Expansion.cpp.

44{
45 py::class_<Expansion, StdExpansion, std::shared_ptr<Expansion>>(m,
46 "Expansion")
47 .def("GetGeom", &Expansion::GetGeom)
48 .def("Reset", &Expansion::Reset);
49}

Referenced by PYBIND11_MODULE().