Embedding an instance of this class inside another class can be used as a low-overhead way of detecting leaked instances.
More...
template<class OwnerClass>
class LeakedObjectDetector< OwnerClass >
Embedding an instance of this class inside another class can be used as a low-overhead way of detecting leaked instances.
This class keeps an internal static count of the number of instances that are active, so that when the app is shutdown and the static destructors are called, it can check whether there are any left-over instances that may have been leaked.
To use it, use the JUCE_LEAK_DETECTOR macro as a simple way to put one in your class declaration. Have a look through the juce codebase for examples, it's used in most of the classes.