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