std::shared_ptr
has a converting constructor that can make a shared_ptr
from a shared_ptr
, so the following should work:
#include
class Base {
public:
typedef std::shared_ptr Ptr;
};
class Derived : public Base {};
int main() {
Base::Ptr myPtr = std::make_shared();
}