Given this example:
struct Base {
void func() { }
};
struct NoOtherBase : public Base {
};
struct OtherBase : public Base {
};
struct HasOtherBase : public OtherBase,
public Base {
};
struct RandomBase : public Base {
};
struct RandomOtherBase : public RandomBase {
};
struct MultipleOtherBases : public RandomOtherBase,
public Base {
};
template <class T>
void randomFunc(T* val) {
/* Find out if T derives from any other class
* based on Base at compile time.
*
* T = NoOtherBase -> false
* T = HasOtherBase -> true
* T = MultipleOtherBases -> true
*/
constexpr bool hasAnotherBase = /* ... */;
// Cast val to the found Base without runtime costs
// and call the func() method.
base->func();
}
The real is problem is that val already derives from Base. The challenge is to find other Base's. If T is HasOtherBase, func of OtherBase should be called. The compiler may throw random errors if T does not conform to the specification.
All features of C++ 11 can be used.


func()in all of this (Base::func()), so I can only guess wtf you're trying to do. Perhaps ask a question next time, as there are none in this post. – WhozCraig Jan 2 at 1:14