The UML class diagram is a rectangle that has three sections. Fill in the members with necessary symbols for public, protected, and private members using a table with three rows.
class Square {
public:
// unlisted members
void resize(double newSide);
void move(Pair<double, double> point);
protected:
void erase();
private:
double side;
Pair<double, double> topRtCorner;
};