LSSTApplications  20.0.0
LSSTDataManagementBasePackage
persistable.cc
Go to the documentation of this file.
1 #include "pybind11/pybind11.h"
2 
3 #include <string>
4 
6 
7 namespace py = pybind11;
8 using namespace pybind11::literals;
9 
10 namespace lsst {
11 namespace daf {
12 namespace base {
13 
14 PYBIND11_MODULE(persistable, mod) {
15  py::class_<Persistable, std::shared_ptr<Persistable>> cls(mod, "Persistable");
16 }
17 
18 } // base
19 } // daf
20 } // lsst
base
Definition: __init__.py:1
lsst::afw::geom.transform.transformContinued.cls
cls
Definition: transformContinued.py:33
Persistable.h
Interface for Persistable base class.
lsst
A base class for image defects.
Definition: imageAlgorithm.dox:1
pybind11
Definition: _GenericMap.cc:40
lsst::daf::base::PYBIND11_MODULE
PYBIND11_MODULE(persistable, mod)
Definition: persistable.cc:14