Given:
mixin class Foo {}
class Bar : Foo {}
Is there a way to determine from the C++ side that Bar inherits from Foo?
edit: I finally figured out how to search this forum, and it looks like the answer is no, the mixin information doesn't persist past compilation and the closest approximation would be using metadata?