visual studio 2010 - Errors LNK1120 and LNK 2019 in C++ -


i have fatal error in program given that:

error   1   error lnk2019: unresolved external symbol "public: void __thiscall applicationmanager::addconnector(class connector *)" (?addconnector@applicationmanager@@qaexpavconnector@@@z) referenced in function "public: virtual void __thiscall addconnectors::execute(void)" (?execute@addconnectors@@uaexxz) c:\users\akabbag\desktop\programming\cmp103 project s2013 - docs - students\project framework\addconnectors.obj 

and

error   2   error lnk1120: 1 unresolved externals 

............................

all i've done have class called applicationmanager.cpp .h file call new object class called (addconnectors) inherted abstract class (actions) take new pointer class connectors (contains functons used) sequence of work included in (addconnectors.cpp) class both :

#include "addconnectors.h" #include "..\applicationmanager.h" 

and in (addconnectors.h) both :

#include "action.h" #include "..\statements\connector.h" 

i defined :

#ifndef add_connectors_h #define add_connectors_h 

with #endif in end

.................... have no idea why error appear .. read alot these errors found 1 of problems may wrong defintion .h file of (addconnectors) there isn't found maybe project constructed begining wrongly made new project console win 32! there suggestions,please?


Comments

Popular posts from this blog

c# - Send Image in Json : 400 Bad request -

jquery - Fancybox - apply a function to several elements -

An easy way to program an Android keyboard layout app -