- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
void makeShape(ShapeArguments shape)
{
if (shape.type == ShapeType::Square)
{
throw Square(shape);
}
if (shape.type == ShapeType::Cicle)
{
throw Circle(shape);
}
}
void handleShape(ShapeArguments shape)
{
try
{
makeShape(shape);
}
catch (const Square& square)
{
// Work with square
}
catch (const Circle& circle)
{
// Work with circle
}
}
Кстати, что вообще такое "kcalbCube”?