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 ()
 

Function Documentation

◆ export_Expansion()

void export_Expansion ( )

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

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

Referenced by BOOST_PYTHON_MODULE().