Loading problems/LabFour_ChapterTen.h +2 −2 Original line number Diff line number Diff line Loading @@ -81,13 +81,13 @@ public: * @param things A vector of geometric things whose areas are to be summed. * @return The sum of the areas of all geometric things in the vector [things]. */ static float sumAreas(vector<labFour_pOne_GeometricThing> things); static float sumAreas(vector<labFour_pOne_GeometricThing *> things); /** * @param things A vector of geometric things whose areas are to be summed. * @return The sum of the areas of all geometric things in the vector [things]. */ static float sumPerimeters(vector<labFour_pOne_GeometricThing> things); static float sumPerimeters(vector<labFour_pOne_GeometricThing *> things); }; class labFour_pOne_Quadrilateral : public labFour_pOne_GeometricThing { Loading Loading
problems/LabFour_ChapterTen.h +2 −2 Original line number Diff line number Diff line Loading @@ -81,13 +81,13 @@ public: * @param things A vector of geometric things whose areas are to be summed. * @return The sum of the areas of all geometric things in the vector [things]. */ static float sumAreas(vector<labFour_pOne_GeometricThing> things); static float sumAreas(vector<labFour_pOne_GeometricThing *> things); /** * @param things A vector of geometric things whose areas are to be summed. * @return The sum of the areas of all geometric things in the vector [things]. */ static float sumPerimeters(vector<labFour_pOne_GeometricThing> things); static float sumPerimeters(vector<labFour_pOne_GeometricThing *> things); }; class labFour_pOne_Quadrilateral : public labFour_pOne_GeometricThing { Loading