Click here to Skip to main content
15,895,084 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Show text after press a button Pin
Albert Holguin28-Sep-11 3:57
professionalAlbert Holguin28-Sep-11 3:57 
GeneralRe: Show text after press a button Pin
antonio34328-Sep-11 6:13
antonio34328-Sep-11 6:13 
GeneralRe: Show text after press a button Pin
Albert Holguin28-Sep-11 7:10
professionalAlbert Holguin28-Sep-11 7:10 
Questionapriori algorithm Pin
salv0327-Sep-11 7:24
salv0327-Sep-11 7:24 
AnswerRe: apriori algorithm [modified] Pin
Chris Meech27-Sep-11 8:16
Chris Meech27-Sep-11 8:16 
GeneralRe: apriori algorithm [modified] Pin
salv0327-Sep-11 8:28
salv0327-Sep-11 8:28 
AnswerRe: apriori c++ algorithm Pin
Software_Developer27-Sep-11 19:59
Software_Developer27-Sep-11 19:59 
GeneralRe: apriori c++ algorithm Pin
salv0328-Sep-11 6:29
salv0328-Sep-11 6:29 
I compiled the code but I have these errors. I do not understand where I am to put ever.
can anyone help me?



error LNK2028: unresolved token (0A000476) "class std::set<class std::set<unsigned int,struct std::less<unsigned int>,class std::allocator<unsigned int> >,struct std::less<class std::set<unsigned int,struct std::less<unsigned int>,class std::allocator<unsigned int> > >,class std::allocator<class std::set<unsigned int,struct std::less<unsigned int>,class std::allocator<unsigned int> > > > __cdecl apriori(unsigned int const &,class Matrix const &,unsigned int const &)" (?apriori@@$$FYA?AV?$set@V?$set@IU?$less@I@std@@V?$allocator@I@2@@std@@U?$less@V?$set@IU?$less@I@std@@V?$allocator@I@2@@std@@@2@V?$allocator@V?$set@IU?$less@I@std@@V?$allocator@I@2@@std@@@2@@std@@ABIABVMatrix@@0@Z) referenced in function "int __cdecl main(void)" (?main@@$$HYAHXZ)

error LNK2028: unresolved token (0A000477) "void __cdecl display(class std::set<class std::set<unsigned int,struct std::less<unsigned int>,class std::allocator<unsigned int> >,struct std::less<class std::set<unsigned int,struct std::less<unsigned int>,class std::allocator<unsigned int> > >,class std::allocator<class std::set<unsigned int,struct std::less<unsigned int>,class std::allocator<unsigned int> > > >,class std::map<unsigned int,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,struct std::less<unsigned int>,class std::allocator<struct std::pair<unsigned int const ,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > > > >)" (?display@@$$FYAXV?$set@V?$set@IU?$less@I@std@@V?$allocator@I@2@@std@@U?$less@V?$set@IU?$less@I@std@@V?$allocator@I@2@@std@@@2@V?$allocator@V?$set@IU?$less@I@std@@V?$allocator@I@2@@std@@@2@@std@@V?$map@IV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$less@I@2@V?$allocator@U?$pair@$$CBIV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@@2@@2@@Z) referenced in function "int __cdecl main(void)" (?main@@$$HYAHXZ)

error LNK2028: unresolved token (0A000478) "public: void __thiscall Matrix::getData(void)" (?getData@Matrix@@$$FQAEXXZ) referenced in function "int __cdecl main(void)" (?main@@$$HYAHXZ)

error LNK2028: unresolved token (0A000479) "public: __thiscall Matrix::~Matrix(void)" (??1Matrix@@$$FQAE@XZ) referenced in function "int __cdecl main(void)" (?main@@$$HYAHXZ)

error LNK2028: unresolved token (0A00047A) "public: __thiscall Matrix::Matrix(unsigned int,unsigned int)" (??0Matrix@@$$FQAE@II@Z) referenced in function "int __cdecl main(void)" (?main@@$$HYAHXZ)

error LNK2019: unresolved external symbol "public: __thiscall Matrix::~Matrix(void)" (??1Matrix@@$$FQAE@XZ) referenced in function "int __cdecl main(void)" (?main@@$$HYAHXZ)
1>salvo.obj : error LNK2019: unresolved external symbol "void __cdecl display(class std::set<class std::set<unsigned int,struct std::less<unsigned int>,class std::allocator<unsigned int> >,struct std::less<class std::set<unsigned int,struct std::less<unsigned int>,class std::allocator<unsigned int> > >,class std::allocator<class std::set<unsigned int,struct std::less<unsigned int>,class std::allocator<unsigned int> > > >,class std::map<unsigned int,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,struct std::less<unsigned int>,class std::allocator<struct std::pair<unsigned int const ,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > > > >)" (?display@@$$FYAXV?$set@V?$set@IU?$less@I@std@@V?$allocator@I@2@@std@@U?$less@V?$set@IU?$less@I@std@@V?$allocator@I@2@@std@@@2@V?$allocator@V?$set@IU?$less@I@std@@V?$allocator@I@2@@std@@@2@@std@@V?$map@IV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$less@I@2@V?$allocator@U?$pair@$$CBIV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@std@@@2@@2@@Z) referenced in function "int __cdecl main(void)" (?main@@$$HYAHXZ)
GeneralRe: apriori c++ algorithm Pin
David Crow28-Sep-11 7:10
David Crow28-Sep-11 7:10 
QuestionMessage Removed Pin
27-Sep-11 3:24
Youming Lee27-Sep-11 3:24 
AnswerRe: allocate memory Pin
Code-o-mat27-Sep-11 3:32
Code-o-mat27-Sep-11 3:32 
GeneralRe: allocate memory Pin
Youming Lee27-Sep-11 4:12
Youming Lee27-Sep-11 4:12 
GeneralRe: allocate memory Pin
Code-o-mat27-Sep-11 4:26
Code-o-mat27-Sep-11 4:26 
AnswerRe: allocate memory Pin
Erudite_Eric27-Sep-11 3:37
Erudite_Eric27-Sep-11 3:37 
Questionmap of map in c++ Pin
002comp27-Sep-11 0:25
002comp27-Sep-11 0:25 
AnswerRe: map of map in c++ Pin
Code-o-mat27-Sep-11 1:31
Code-o-mat27-Sep-11 1:31 
GeneralRe: map of map in c++ Pin
Stefan_Lang28-Sep-11 1:12
Stefan_Lang28-Sep-11 1:12 
GeneralRe: map of map in c++ Pin
Code-o-mat28-Sep-11 1:37
Code-o-mat28-Sep-11 1:37 
AnswerRe: map of map in c++ Pin
Stefan_Lang27-Sep-11 5:43
Stefan_Lang27-Sep-11 5:43 
QuestionIs it possible to suspend a thread when the thread has executed Sleep() statement and in sleep mode Pin
manoharbalu27-Sep-11 0:14
manoharbalu27-Sep-11 0:14 
AnswerRe: Is it possible to suspend a thread when it executes Sleep() statement Pin
Software_Developer27-Sep-11 0:59
Software_Developer27-Sep-11 0:59 
GeneralRe: Is it possible to suspend a thread when the thread executes Sleep() statement Pin
manoharbalu27-Sep-11 1:01
manoharbalu27-Sep-11 1:01 
AnswerRe: Is it possible to suspend a thread when it executes Sleep() statement [link fixed, thanks to Chris] Pin
CPallini27-Sep-11 1:02
mveCPallini27-Sep-11 1:02 
GeneralRe: Is it possible to suspend a thread when it executes Sleep() statement Pin
Chris Meech27-Sep-11 2:36
Chris Meech27-Sep-11 2:36 
GeneralRe: Is it possible to suspend a thread when it executes Sleep() statement Pin
CPallini27-Sep-11 2:52
mveCPallini27-Sep-11 2:52 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.