Help finding Link2019 Error please

Started by
1 comment, last by Vanz 10 years, 5 months ago

hi,

Could really use some help finding the cause of this error:

error LNK2019: unresolved external symbol "public: __thiscall cApp::cApp(void)" (??0cApp@@QAE@XZ) referenced in function _WinMain@16

Googled the error, but still can't find it:

http://msdn.microsoft.com/en-us/library/799kze2z.aspx

Attached is the simple code...

Any help is much appreciated,

Thanks,

rh

Advertisement

You declared (and invoked) a parameterless constructor for class cApp, but you never defined it anywhere. You need to provide an implementation for cApp::cApp().

You declared (and invoked) a parameterless constructor for class cApp, but you never defined it anywhere. You need to provide an implementation for cApp::cApp().

ah crap... thank you so much!

This topic is closed to new replies.

Advertisement