This is what I have, but I don't think it's right:
In the hpp file I have:
mChildren **Node;
and in the c++ file
when I want to create the children:
*mChildren = new Node[4];
and when I want to access the children nodes:
mChildren[i]...
To me, that doesn't seem right. Is that what it should be?
Thank you



LinkBack URL
About LinkBacks


