24 #ifndef PXR_BASE_TF_DECLARE_PTRS_H
25 #define PXR_BASE_TF_DECLARE_PTRS_H
62 #define TF_DECLARE_WEAK_PTRS(type) \
63 typedef TfDeclarePtrs< class type >::Ptr type##Ptr; \
64 typedef TfDeclarePtrs< class type >::ConstPtr type##ConstPtr; \
65 typedef TfDeclarePtrs< class type >::PtrVector type##PtrVector; \
66 typedef TfDeclarePtrs< class type >::ConstPtrVector type##ConstPtrVector
75 #define TF_DECLARE_REF_PTRS(type) \
76 typedef TfDeclarePtrs< class type >::RefPtr type##RefPtr; \
77 typedef TfDeclarePtrs< class type >::ConstRefPtr type##ConstRefPtr; \
78 typedef TfDeclarePtrs< class type >::RefPtrVector type##RefPtrVector; \
79 typedef TfDeclarePtrs< class type >::ConstRefPtrVector type##ConstRefPtrVector
89 #define TF_DECLARE_WEAK_AND_REF_PTRS(type) \
90 TF_DECLARE_WEAK_PTRS(type); \
91 TF_DECLARE_REF_PTRS(type)
std::vector< Ptr > PtrVector
TfWeakPtr< const T > ConstPtr
std::vector< RefPtr > RefPtrVector
std::vector< ConstPtr > ConstPtrVector
TfRefPtr< const T > ConstRefPtr
std::vector< ConstRefPtr > ConstRefPtrVector
PXR_NAMESPACE_CLOSE_SCOPE PXR_NAMESPACE_OPEN_SCOPE
#define PXR_NAMESPACE_CLOSE_SCOPE