#include <utilmm/smart/count_pointer.hh>
Public Types | |
typedef pointer < manager_type > | type |
The smart pointer type. |
This structure is just an helper to have direct access for the basic smart pointer using a reference counting life time manager.
Ty | The type we want to point to |
#include "smart/count_pointer.hh" // [...] utilmm::smart::count_pointer<int>::type pi(new int(5)), pj; *pi = 6; pj = pi;
typedef pointer<manager_type> utilmm::smart::count_pointer< Ty >::type |