#ifndef MOTHERH #define MOTHERH using namespace std; class mother { int i; public: mother(int initial_i): i(initial_i) {} virtual ~mother() {} //this example simpler if every class has a vtbl }; #endif