Destructors being called twice in inheritance[code] template<class Type> struct node { Type data; node *link; }; template<class Type> cl...
Destructors being called twice in inheritanceI made two lists (just to fulfill assignment's criteria) that's why I created two objects. I've alr...
Destructors being called twice in inheritance[EDIT]: Problem solved. It is due to that I didn't put the copy constructor and also the function of...
Missing template arguments before '.' tokenthanks a lot , Disch. I was wondering what type is it for the class now it's clear. Appreciate your ...
Missing template arguments before '.' tokenwhat if the data is a class? because i wanted to store a collection of information into the list. I...
This user does not accept Private Messages