1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
1> Generating Code...
1>Main.obj : error LNK2019: unresolved external symbol "public: __thiscall DArray<int>::DArray<int>(int)" (??0?$DArray@H@@QAE@H@Z) referenced in function _main
1>Main.obj : error LNK2019: unresolved external symbol "public: void __thiscall DArray<int>::addElement(int const &)" (?addElement@?$DArray@H@@QAEXABH@Z) referenced in function _main
1>Main.obj : error LNK2019: unresolved external symbol "public: __thiscall DArray<int>::~DArray<int>(void)" (??1?$DArray@H@@QAE@XZ) referenced in function _main
1>Main.obj : error LNK2019: unresolved external symbol "public: int __thiscall DArray<int>::getNumberUsed(void)const " (?getNumberUsed@?$DArray@H@@QBEHXZ) referenced in function _main
1>Main.obj : error LNK2019: unresolved external symbol "public: int const & __thiscall DArray<int>::getElementAt(int)const " (?getElementAt@?$DArray@H@@QBEABHH@Z) referenced in function _main
1>Main.obj : error LNK2019: unresolved external symbol "public: __thiscall DArray<double>::DArray<double>(int)" (??0?$DArray@N@@QAE@H@Z) referenced in function _main
1>Main.obj : error LNK2019: unresolved external symbol "public: void __thiscall DArray<double>::addElement(double const &)" (?addElement@?$DArray@N@@QAEXABN@Z) referenced in function _main
1>Main.obj : error LNK2019: unresolved external symbol "public: __thiscall DArray<double>::~DArray<double>(void)" (??1?$DArray@N@@QAE@XZ) referenced in function _main
1>Main.obj : error LNK2019: unresolved external symbol "public: int __thiscall DArray<double>::getNumberUsed(void)const " (?getNumberUsed@?$DArray@N@@QBEHXZ) referenced in function _main
1>Main.obj : error LNK2019: unresolved external symbol "public: double const & __thiscall DArray<double>::getElementAt(int)const " (?getElementAt@?$DArray@N@@QBEABNH@Z) referenced in function _main
1>Main.obj : error LNK2019: unresolved external symbol "public: __thiscall DArray<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > >::DArray<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > >(int)" (??0?$DArray@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@@QAE@H@Z) referenced in function _main
1>Main.obj : error LNK2019: unresolved external symbol "public: void __thiscall DArray<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > >::addElement(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (?addElement@?$DArray@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@@QAEXABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) referenced in function _main
1>Main.obj : error LNK2019: unresolved external symbol "public: __thiscall DArray<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > >::~DArray<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > >(void)" (??1?$DArray@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@@QAE@XZ) referenced in function _main
1>Main.obj : error LNK2019: unresolved external symbol "public: int __thiscall DArray<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > >::getNumberUsed(void)const " (?getNumberUsed@?$DArray@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@@QBEHXZ) referenced in function _main
1>Main.obj : error LNK2019: unresolved external symbol "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const & __thiscall DArray<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > >::getElementAt(int)const " (?getElementAt@?$DArray@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@@QBEABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@Z) referenced in function _main
1>Main.obj : error LNK2019: unresolved external symbol "public: __thiscall DArray<class Student>::DArray<class Student>(int)" (??0?$DArray@VStudent@@@@QAE@H@Z) referenced in function _main
1>Main.obj : error LNK2019: unresolved external symbol "public: void __thiscall DArray<class Student>::addElement(class Student const &)" (?addElement@?$DArray@VStudent@@@@QAEXABVStudent@@@Z) referenced in function _main
1>Main.obj : error LNK2019: unresolved external symbol "public: __thiscall DArray<class Student>::~DArray<class Student>(void)" (??1?$DArray@VStudent@@@@QAE@XZ) referenced in function _main
1>Main.obj : error LNK2019: unresolved external symbol "public: int __thiscall DArray<class Student>::getNumberUsed(void)const " (?getNumberUsed@?$DArray@VStudent@@@@QBEHXZ) referenced in function _main
1>Main.obj : error LNK2019: unresolved external symbol "public: class Student const & __thiscall DArray<class Student>::getElementAt(int)const " (?getElementAt@?$DArray@VStudent@@@@QBEABVStudent@@H@Z) referenced in function _main
1>E:\CS 250\Wk 6\ex_10_darray_template\Debug\Project.exe : fatal error LNK1120: 20 unresolved externals
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
|