|
|
От: | MaxLovic | |
| Дата: | 25.10.13 09:56 | ||
| Оценка: | |||
std::vector<std::shared_ptr<Base>> m = {
std::make_shared<B>(),
std::make_shared<A>(),
std::make_shared<A>()
};std::vector<std::shared_ptr<A>> m = {
std::make_shared<A>(),
std::make_shared<A>()
};