I have multiple classes connected by hxx header files and inheritance.This is all about OS simulation. I compiled them individually to see if i get any syntax errors but that wa
Compiling individually is a reasonable test for syntax errors, but there's no point in linking individually, things WILL be missing.
So find the compiler option to compile without linking (Microsoft Visual C++: /c, g++: -c) and use it.
/c
-c