cmaking-moves/include/shapes/Rectangle.hpp
2025-12-23 11:06:42 -10:00

13 lines
152 B
C++

#include "Shape.hpp"
struct Rectangle : public Shape
{
Rectangle(const double sideLen);
double area() override;
private:
double sideLen{};
};