What does it mean?

Sep 20, 2014 at 5:52am
Error 2 error LNK1120: 1 unresolved externals

Error 1 error LNK2019: unresolved external symbol "public: __thiscall Circle::Circle(class Point,int)" (??0Circle@@QAE@VPoint@@H@Z) referenced in function _main

What does it mean? I can't understand. Please help me.
Sep 20, 2014 at 7:07am
I would guess you have a header file that declares a constructor for a Circle class that takes a Point and an integer as parameters, but you haven't provided the definition of that constructor anywhere. Thus, when you try to use it the linker can't find the definition.
Topic archived. No new replies allowed.