Class lsst::afw::typehandling::StorableHelper

template<class Base = Storable>
class StorableHelper : public Base

“Trampoline” for Storable to let it be used as a base class in Python.

Subclasses of Storable that are wrapped in pybind11 should have a similar helper that subclasses StorableHelper<subclass>. This helper can be skipped if the subclass neither adds any virtual methods nor implements any abstract methods.

See

pybind11 documentation

Template Parameters
  • Base: the exact (most specific) class being wrapped