I'm tring to load an obj file containing sphere vertices using this obj loader and I get this error when I compile:
1>ShaderPerspective.obj : error LNK2019: unresolved external symbol "public: int __thiscall objLoader::load(char *)" (?load@objLoader@@QAEHPAD@Z) referenced in function "void __cdecl loadObj(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (?loadObj@@YAXABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z)
The code that fails is:
void loadObj(const std::string &strObjFile)
{
objLoader *objData = new objLoader();
objData->load("data\\sphere.obj");
}
I know that this is a linker error but being a bit of a beginner with c++ and Visual Studio , if anyone can point me in the right direction on how to get this to work I would be grateful.