takeaway.o: In function `takeaway\':
project:145: undefined reference to `vtable for takeaway\'
project:145: undefined reference to `vtable for takeaway\'
takeaway.o
You may take a look at this answer to an identical question (as I understand): https://stackoverflow.com/a/1478553 The link posted there explains the problem.
For quick solving your problem you should try to code something like this:
ImplementingClass::virtualFunctionToImplement(){...}
It helped me a lot.