Skip to content

Commit

Permalink
Add definitions for the BoundingBox and CreateManipulator methods in …
Browse files Browse the repository at this point in the history
…Shape.
  • Loading branch information
BartVandewoestyne committed Feb 12, 2024
1 parent fdd9b2a commit eed58f3
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Structural_Patterns/Adapter/Shape.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,14 @@

Shape::Shape()
{}

void Shape::BoundingBox(Point& bottomLeft, Point& topRight) const
{
// TODO
}

Manipulator* Shape::CreateManipulator() const
{
// TODO
return 0;
}

0 comments on commit eed58f3

Please sign in to comment.