When building my C++ program, I\'m getting the error message
undefined reference to \'vtable...
What is the cause of this probl
I simply got this error because my .cpp file was not in the makefile.
In general, if you forget to compile or link to the specific object file containing the definition, you will run into this error.