class CTest : public std::vector<CTest*>
{
// ...
};
Is it safe to do like this? Which should i use, vector or list if yes?
class CTest : public std::vector<CTest*>
{
// ...
};
Is it safe to do like this? Which should i use, vector or list if yes?