Quantcast
Channel: QtWebEngine
Viewing all articles
Browse latest Browse all 13965

a pointer to a class that contains pointers

$
0
0
hi i have a class that contains pointers,the class iherits nothing class MyClass { public: MyClass(); ~MyClass();   private: //i have pointers here }; MyClass::~MyClass() { qDebug()<<"destroyed.."; } now i have to use this class as a pointer in vector like this: QVector<MyClass*> classes; //push some classes in here but //when i remove an element classes.remove(index); //the destructor doesn't get called,and i think that is the true definition of memory leak so how do i make it call the destructor

Viewing all articles
Browse latest Browse all 13965

Trending Articles