38 lines
523 B
C++
38 lines
523 B
C++
#include <memory>
|
|
|
|
namespace clanguml {
|
|
namespace t00025 {
|
|
|
|
class Target1 {
|
|
public:
|
|
void m1() { }
|
|
void m2() { }
|
|
};
|
|
|
|
class Target2 {
|
|
public:
|
|
void m1() { }
|
|
void m2() { }
|
|
};
|
|
|
|
template <typename T> class Proxy {
|
|
public:
|
|
Proxy(std::shared_ptr<T> target)
|
|
: m_target{std::move(target)}
|
|
{
|
|
}
|
|
void m1() { m_target->m1(); }
|
|
void m2() { m_target->m2(); }
|
|
|
|
private:
|
|
std::shared_ptr<T> m_target;
|
|
};
|
|
|
|
class ProxyHolder {
|
|
public:
|
|
Proxy<Target1> proxy1;
|
|
Proxy<Target2> proxy2;
|
|
};
|
|
}
|
|
}
|