// SharedNullPolicy.cpp #include "ptr/SharedNullPolicy.h" #include void SharedNullPolicy::ostr(std::ostream& stream) const { if ( ! _ptable ) stream << "Shared null policy has no table."; else stream << "Shared null policy table: " << *_ptable; } std::ostream& operator<<(std::ostream& stream, const SharedNullPolicy& rhs) { return stream; }