Weird problem with class using all inline functions :(

Started by
1 comment, last by neurokaotix 20 years, 11 months ago
*PROBLEM SOLVED* mCMD.h included mCMDProto.h and mCMDProto.h included mCMD.h ;D Thanks though [edited by - neurokaotix on May 28, 2003 12:38:48 AM]
Advertisement
Maybe you are creating an instance of the object, without specifying any parameters. You don't seem to have a default constructor specified, so if you did:

mCmd MyCmd;

... it might generate an error like you see above. Check to find out where you create the instance of your object. I've never seen those pointer errors, but perhaps they're related. It also might be because I use VC++6... what compiler are you using?

EDIT: Looking at it again... maybve your #includes are messed up (it mentions the use of an undefined type..)

Peon

[edited by - Peon on May 28, 2003 12:39:17 AM]
Peon
Thanks Peon for taking time out to help me

James Simmons
MindEngine Development
http://medev.sourceforge.net

This topic is closed to new replies.

Advertisement