How do I initalize the Vertex objects in Edge and EndPoint?
In the constructor, you can use initalization lists to instantiate the Vertex objects. Here is an example of using an instatiation list: class Integer { private: int my_int; public: Integer(int i) : my_int(i) {} void print() { cout }; class A { private: Integer my_int; public: A(int i) : my_int(i) {} void print() { my_int.print(); }; }; • Who should I send clarification questions about this project to? For this project only, please send all clarification questions to Chris Almazan