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