// PropagatorPtr.h #ifndef PropagatorPtr_H #define PropagatorPtr_H // Here we define a shared-ownership pointers to type Propagator. #include "ptr/Ptr.h" #include "ptr/LocalSharedDeletePolicy.h" #include "Propagator.h" namespace trf { typedef Ptr PropagatorPtr; } // end namespace trf #endif