1 #include "pybind11/pybind11.h"
2 #include "pybind11/stl.h"
4 #include "lsst/daf/base/PropertySet.h"
7 namespace py = pybind11;
11 namespace persistence {
14 py::module mod(
"logicalLocation");
16 py::class_<LogicalLocation> cls(mod,
"LogicalLocation");
18 cls.def(py::init<std::string const&>());
19 cls.def(py::init<std::string
const&, CONST_PTR(dafBase::PropertySet)>());
std::string const & locString(void) const
Accessor.
static void setLocationMap(boost::shared_ptr< dafBase::PropertySet > map)
Set the logical-to-less-logical map.
Interface for LogicalLocation class.