std::for_each(matrix.begin(), matrix.end(), [&](vector<Cell> cellLine)
{
std::for_each(cellLine.begin(), cellLine.end(), [&](Cell cell)
{
cell.showBody();
});
});vector<Cell> cellLinevector<Cell> &cellLine