#include "Figure.h" #include class Cell { private: Figure* figure = nullptr; public: Cell(); Cell(Figure* figure); friend std::ostream& operator <<(std::ostream& out, Cell& cell); };