A
Asapi
class base
{
};
class d1 : public base
{
};
class d2 : public base
{
};
Then a bunch of objects instantiated from either d1 or d2.
Is it okay to put those objects into the same STL "list" container?
Thanks!
{
};
class d1 : public base
{
};
class d2 : public base
{
};
Then a bunch of objects instantiated from either d1 or d2.
Is it okay to put those objects into the same STL "list" container?
Thanks!