1234567891011121314151617 |
- #include "Cell.h"
- #include <iostream>
- Cell::Cell()
- {figure = nullptr;}
- Cell::Cell(Figure* fig)
- {
- figure = fig;
- }
- std::ostream& operator <<(std::ostream& out, Cell& cell)
- {
- if (cell.figure == nullptr) out << ". ";
- else out << cell.figure->print() << ' ';
- return out;
- }
|