lsst.utils  13.0-8-gb7ca535+4
demangle.cc
Go to the documentation of this file.
1 #include "pybind11/pybind11.h"
2 
3 #include "lsst/utils/Demangle.h"
4 
5 namespace py = pybind11;
6 
7 namespace lsst {
8 namespace utils {
9 
11  py::module mod("demangle");
12 
13  mod.def("demangleType", demangleType);
14 
15  return mod.ptr();
16 }
17 
18 } // utils
19 } // lsst
std::string demangleType(std::string const _typeName)
Definition: Demangle.cc:113
PYBIND11_PLUGIN(backtrace)
Definition: backtrace.cc:10
Definition: main.dox:1