I
imanpreet
Hi,
Could anyone proivde a logical argument against this
class Shape
{
};
class Circle
ublic Shape
{
};
void operator=(std::vector<Shape> sh, std::vector<Circle> cir)
{
}
std::vector<Shape> sh;
std::vector<circle> cir;
sh = cir;
Could anyone proivde a logical argument against this
class Shape
{
};
class Circle
{
};
void operator=(std::vector<Shape> sh, std::vector<Circle> cir)
{
}
std::vector<Shape> sh;
std::vector<circle> cir;
sh = cir;