Either that,
or change how you allocate the objects in Body.cpp

Instead of
Code:
Neck = new Object();
Use
Code:
Object Neck();
(whether you allocate dynamically or not is down to exactly how you're going to be using the objects later on - if they're large, dynamic's always a good idea, as there's limited space on the stack)