12-16-2012 03:34 PM
My app has a number of classes, I define them for example:
Help *help = new Help();
What is the best way to delete the object created? I've tried delete but when I define the class again later in the app when it is needed again the memory usage goes up and up. It doesnt appear to get deleted.
I've seen that with a navigation pane you can delete a page on pop. But what about the class that holds the page?
I'm using C++.