1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
#ifndef BU_C_PTR_H #define BU_C_PTR_H #include "bu/cache.h" namespace Bu { template<class obtype> class CPtr { friend class Bu::Cache<obtype>; private: CPtr( Cache<obtype> &rCache, obtype &rData ) { } public: virtual ~CPtr() { } }; }; #endif