Inheritance
I actually figured out what the problem was, I wasn't using a pointer for my classes. As in:
Base * instance = new Derived();
I was using:
Base instance;
Derived d;
instance = d;
Sorry.
Base * instance = new Derived();
I was using:
Base instance;
Derived d;
instance = d;
Sorry.
| Messages In This Thread |
|
Inheritance - merrill541 - Feb 22, 2009, 02:08 PM
Inheritance - DoG - Feb 23, 2009, 01:54 AM
Inheritance - ozirus - Feb 23, 2009, 04:18 AM
Inheritance - merrill541 - Feb 23, 2009 07:29 AM
Inheritance - ozirus - Feb 23, 2009, 07:37 AM
|
Possibly Related Threads...
| Thread: | Author | Replies: | Views: | Last Post | |
| Inheritance issues | Tekkan | 3 | 2,580 |
Jun 16, 2007 06:30 PM Last Post: Tekkan |
|

