/** * @file {module_name}.cpp * @brief The auto-generated wrapper C++ source code. * @author Duy-Nguyen Ta, Fan Jiang, Matthew Sklar, Varun Agrawal * @date Aug. 18, 2020 * * ** THIS FILE IS AUTO-GENERATED, DO NOT MODIFY! ** */ // Include relevant boost libraries required by GTSAM {include_boost} #include #include #include #include #include #include #include "gtsam/config.h" #include "gtsam/base/serialization.h" #include "gtsam/base/utilities.h" // for RedirectCout. // These are the included headers listed in `gtsam.i` {includes} #include // Export classes for serialization {boost_class_export} // Holder type for pybind11 {holder_type} // Preamble for STL classes // TODO(fan): make this automatic #include "python/gtsam/preamble/{module_name}.h" using namespace std; namespace py = pybind11; {submodules} {module_def} {{ m_.doc() = "pybind11 wrapper of {module_name}"; {submodules_init} {wrapped_namespace} // Specializations for STL classes // TODO(fan): make this automatic #include "python/gtsam/specializations/{module_name}.h" }}