// SurfacePtr.h #ifndef SurfacePtr_H #define SurfacePtr_H // A reference-counting pointer to the abstract surface class. #include "ptr/Ptr.h" #include "ptr/LocalSharedDeletePolicy.h" #include "Surface.h" namespace trf { typedef Ptr SurfacePtr; } // end namespace trf #endif