Suppose I have a class like this:
class MyClass : private vector<AnotherClass*> {
//some codes
}
How do I implement its destructor? I am new to C++ and have totally no clue on this.
Thanks in advance!
edit: fixed the syntax,thx for remaindering me!