22 void reference(
const void* what,
const void* bywho,
const char* whatName = 0);
23 void dereference(
const void* what,
const void* bywho);
24 void dumpReferences();
25 void dumpReferences(
const void* what);
27 template<
typename _T_>
28 void reference(
const _T_* what,
const void* bywho);
29 template<
typename _T_>
30 void dereference(
const _T_* what,
const void* bywho);
38 template<
typename _T_>
39 void MemoryLeakTracker::reference(
const _T_* what,
const void* bywho)
41 reference((
void*)what, bywho, qPrintable(prettyTypename<_T_>()));
44 template<
typename _T_>
45 void MemoryLeakTracker::dereference(
const _T_* what,
const void* bywho)
47 dereference((
void*)what, bywho);
Definition MemoryLeakTracker.h:17