Does considered to be experimental - static reflection feature include iteration over parent classes?

252 Views Asked by At

Studying information about possible new TS features I discovered the static reflection is considered to be added. The document summing up the meeting on the proposals gathers the information on what actually proposals intend to introduce and what authors believe should not be added:

  • Supported:
    • Data members (e.g. iterating over the member variables)
    • Member types (typedefs/using declarations)
    • Enumerators
    • Template instantiations
    • Alias support
  • Not Supported
    • Namespace member sequences
    • Functions
    • Class templates
    • Building new datatypes
    • Reflection facilities already in C++
    • Anonymous Functions
    • Attributes

My first thought was that the very basic reflection element - iterating over parent classes, is not included neither in supported nor not supported list. Are indeed none of the proposals request to add this one?

1

There are 1 best solutions below

1
On BEST ANSWER

Looking at Working Draft, C++ Extensions for Reflection which is currently being voted on to be published as the Reflection TS, there is a concept Base (see [reflect.concepts.base]), currently retrieved using

  • std::experimental::reflect::get_base_classes
  • std::experimental::reflect::get_public_base_classes
  • std::experimental::reflect::get_accessible_base_classes