#include #include #include #include using namespace std ; #include "IntFamily.h" ostream& operator<<(ostream& OutStream, const IntFamily& famObj) { int famSize = famObj.getSize() ; OutStream << famObj.getParent() << "->" ; for (int i=0; i0) OutStream << famObj.getChild(famSize-1) ; return OutStream ; }