Visual Studio 2005 Cpp

Joined
Jun 26, 2007
Messages
4
Reaction score
0
Hi All,
Just started using VSCpp to run some Cpp code my supervisor did in CodeWarrior and I'm have a rough time with it. Although it runs perfectly for him on CodeWarrior I seem to be getting a number of warnings and errors. Any idea how to deal with this one first off???? I admit that I have seen a previous post with this type of error but the methods suggested to alleviate the problem did not work..

Tony

Code:
1>CSP_DenseMatrix_demo.obj : error LNK2001: unresolved external symbol "public: void __thiscall csp::DenseMatrix::Out(long)const " (?Out@?$DenseMatrix@N$02@csp@@QBEXJ@Z)
1>CSP_DenseMatrix_demo.obj : error LNK2001: unresolved external symbol "public: void __thiscall csp::DenseMatrix::FillCol(unsigned int,double)" (?FillCol@?$DenseMatrix@N$02@csp@@QAEXIN@Z)
1>CSP_DenseMatrix_demo.obj : error LNK2001: unresolved external symbol "public: void __thiscall csp::DenseMatrix::FillRow(unsigned int,double)" (?FillRow@?$DenseMatrix@N$02@csp@@QAEXIN@Z)
1>CSP_DenseMatrix_demo.obj : error LNK2001: unresolved external symbol "public: void __thiscall csp::DenseMatrix::ZeroCol(unsigned int)" (?ZeroCol@?$DenseMatrix@N$02@csp@@QAEXI@Z)
1>CSP_DenseMatrix_demo.obj : error LNK2001: unresolved external symbol "public: class csp::DenseMatrix __thiscall csp::DenseMatrix::operator*(class csp::DenseMatrix const &)const " (??D?$DenseMatrix@N$02@csp@@QBE?AV01@ABV01@@Z)
1>CSP_DenseMatrix_demo.obj : error LNK2001: unresolved external symbol "public: class csp::DenseMatrix & __thiscall csp::DenseMatrix::operator+=(class csp::DenseMatrix const &)" (??Y?$DenseMatrix@N$02@csp@@QAEAAV01@ABV01@@Z)
1>CSP_DenseMatrix_demo.obj : error LNK2001: unresolved external symbol "public: class csp::DenseMatrix & __thiscall csp::DenseMatrix::operator=(class csp::DenseMatrix const &)" (??4?$DenseMatrix@N$02@csp@@QAEAAV01@ABV01@@Z)
1>CSP_DenseMatrix_demo.obj : error LNK2001: unresolved external symbol "public: __thiscall csp::DenseMatrix::~DenseMatrix(void)" (??1?$DenseMatrix@N$02@csp@@QAE@XZ)
1>CSP_DenseMatrix_demo.obj : error LNK2001: unresolved external symbol "public: __thiscall csp::DenseMatrix::DenseMatrix(unsigned int,unsigned int,double)" (??0?$DenseMatrix@N$02@csp@@QAE@IIN@Z)
1>LIBCMT.lib(crt0.obj) : error LNK2001: unresolved external symbol _main
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top