Hi, I have two classes, lets call them Parent and Child. In some cases I make an instance of only Parent. In another case I make an instance of Child which inherits Parent. What I want to know how to ...
I have a class<BR>class Alpha<BR>{<BR> class Record<BR> {<BR> //stuff<BR> }<BR> //stuff<BR>}<BR><BR>And another class<BR>class Beta<BR>{<BR> void method(Alpha::Record ...