#ifndef __INTFAMILY__ #define __INTFAMILY__ #include "LList.h" class IntFamily { private: LList *childList ; int parent ; public: IntFamily(int Parent) ; // Creates family with no children void addChild(int NewChild) ; // Adds new child to the family int getParent() const ; // Returns parent of family int getSize() const ; // Returns size of family int getChild(int I) const; // Returns I'th child of family ~IntFamily() ; // deconstructor } ; #endif