1 2#include "depD.h" 3 4int DepD::foo() 5{ 6 return 0; 7} 8 9DepA DepD::getA() 10{ 11 DepA a; 12 return a; 13} 14 15