What is the uml representation of the following c++ class:
class A;
class B: public std::vector<std::shared_ptr<A>>
{
}
and
class C : public std::enable_shared_from_this<C>
{
}
What is the uml representation of the following c++ class:
class A;
class B: public std::vector<std::shared_ptr<A>>
{
}
and
class C : public std::enable_shared_from_this<C>
{
}