2
votes
7answers
290 views
Make a copy of an unknown concrete type in c++
Suppose we have the following class hierarchy:
class Base {
...
};
class Derived1 : public Base {
...
};
class Derived2 : public Base {
...
};
Given …
