AUI Framework  master
Cross-platform base for C++ UI apps
Loading...
Searching...
No Matches
aui::reflect::member< Type > Struct Template Reference

Pointer to member type (not value) introspection. More...

Detailed Description#

template<typename Type>
struct aui::reflect::member< Type >

aui::reflect::member provides metaprogramming capabilities to inspect the properties of class members. Depending on the actual kind of the member, different kinds of data available.

Fields (member variables)#

template <typename Type, typename Clazz>
struct member<Type(Clazz::*)> {
    using type = Type;     // field type
    using clazz = Clazz;   // class type that owns the field
};

Methods (member functions)#

template <typename Type, typename Clazz, typename... Args>
struct member<Type (Clazz::*)(Args...)> {
    using return_t = Type;   // function return type
    using clazz = Clazz;     // class type that owns the fields
    using args = std::tuple<Args...>;   // function args (see note)
    static constexpr bool is_const = false;      // whether is const
    static constexpr bool is_noexcept = false;   // whether is noexcept
};
Note
Use aui::tuple_visitor and aui::parameter_pack to introspect arguments.