Re: Copying void *?
So the constuctor is basically
myClass::myClass (const myClass &rhs)
{
string1 = rhs.string1;
string2 = rhs.string2;
voidstar = rhs.voidstar;
}
dangerous?
what I want is to have people be able to insert into the tree and
throw whatever type they want into the tree and i'll store it as a
void *.
|