37 lines
557 B
C++
37 lines
557 B
C++
#include <memory>
|
|
#include <vector>
|
|
|
|
namespace clanguml {
|
|
namespace t00032 {
|
|
|
|
struct Base { };
|
|
|
|
struct TBase { };
|
|
|
|
struct A {
|
|
void operator()() { }
|
|
};
|
|
|
|
struct B {
|
|
void operator()() { }
|
|
};
|
|
|
|
struct C {
|
|
void operator()() { }
|
|
};
|
|
|
|
template <typename T, typename L, typename... Ts>
|
|
struct Overload : public Base, public T, public Ts... {
|
|
using Ts::operator()...;
|
|
L counter;
|
|
};
|
|
|
|
template <class... Ts> Overload(Ts...) -> Overload<Ts...>;
|
|
|
|
struct R {
|
|
Overload<TBase, int, A, B, C> overload;
|
|
};
|
|
|
|
} // namespace t00032
|
|
} // namespace clanguml
|