Advertisement

Help finding Link2019 Error please

Started by November 10, 2013 03:32 AM
1 comment, last by Vanz 11 years, 3 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

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().

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().

ah crap... thank you so much!

This topic is closed to new replies.

Advertisement