Cell.h 220 B

1234567891011121314
  1. #include "Figure.h"
  2. #include <iostream>
  3. class Cell
  4. {
  5. private:
  6. Figure* figure = nullptr;
  7. public:
  8. Cell();
  9. Cell(Figure* figure);
  10. friend std::ostream& operator <<(std::ostream& out, Cell& cell);
  11. };