Inheritance

Member
Posts: 40
Joined: 2008.10
Post: #4
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.
Quote this message in a reply
Post Reply 


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,578 Jun 16, 2007 06:30 PM
Last Post: Tekkan