lsst.daf.persistence  13.0-30-gd2bda26+1
 All Classes Namespaces Files Functions Variables Typedefs Friends Macros
formatterStorage.cc
Go to the documentation of this file.
1 #include "pybind11/pybind11.h"
2 #include "pybind11/stl.h"
3 
4 #include "lsst/daf/base/Citizen.h"
5 #include "lsst/daf/base/PropertySet.h"
8 
9 namespace py = pybind11;
10 
11 namespace lsst {
12 namespace daf {
13 namespace persistence {
14 
15 PYBIND11_PLUGIN(formatterStorage) {
16  py::module::import("lsst.daf.base");
17 
18  py::module mod("formatterStorage");
19 
20  py::class_<FormatterStorage, std::shared_ptr<FormatterStorage>, base::Citizen> cls(mod, "FormatterStorage");
21 
22  return mod.ptr();
23 }
24 
25 } // persistence
26 } // daf
27 } // lsst
Interface for FormatterStorage abstract base class.
PYBIND11_PLUGIN(dbAuth)
Definition: dbAuth.cc:11
Interface for LogicalLocation class.