Unresolved external symbol in object files
This error often means that some function has a declaration, but not a definition. Example: In your case, the definition cannot be found. The issue could be that you are including a header file, which brings in some function declarations, but you either: do not define the functions in your cpp file (if you wrote … Read more