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