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.

Referenced by BOOST_PYTHON_MODULE().

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