EnTT 3.14.0
|
Meta factory to be used for reflection purposes. More...
#include <factory.hpp>
Public Member Functions | |
meta_factory () noexcept | |
Default constructor. | |
meta_factory (meta_ctx &area) noexcept | |
Context aware constructor. | |
meta_factory | type (const id_type id) noexcept |
Assigns a custom unique identifier to a meta type. | |
template<typename Base > | |
meta_factory | base () noexcept |
Assigns a meta base to a meta type. | |
template<auto Candidate> | |
auto | conv () noexcept |
Assigns a meta conversion function to a meta type. | |
template<typename To > | |
meta_factory | conv () noexcept |
Assigns a meta conversion function to a meta type. | |
template<auto Candidate, typename Policy = as_is_t> | |
meta_factory | ctor () noexcept |
Assigns a meta constructor to a meta type. | |
template<typename... Args> | |
meta_factory | ctor () noexcept |
Assigns a meta constructor to a meta type. | |
template<auto Func> | |
meta_factory | dtor () noexcept |
Assigns a meta destructor to a meta type. | |
template<auto Data, typename Policy = as_is_t> | |
meta_factory | data (const id_type id) noexcept |
Assigns a meta data to a meta type. | |
template<auto Setter, auto Getter, typename Policy = as_is_t> | |
meta_factory | data (const id_type id) noexcept |
Assigns a meta data to a meta type by means of its setter and getter. | |
template<typename Setter , auto Getter, typename Policy = as_is_t> | |
meta_factory | data (const id_type id) noexcept |
Assigns a meta data to a meta type by means of its setters and getter. | |
template<auto Candidate, typename Policy = as_is_t> | |
meta_factory | func (const id_type id) noexcept |
Assigns a meta function to a meta type. | |
template<typename... Value> | |
meta_factory | prop (id_type id, Value &&...value) |
Assigns a property to the last created meta object. | |
template<typename Value > | |
meta_factory | traits (const Value value) |
Sets traits on the last created meta object. | |
template<typename Value , typename... Args> | |
meta_factory | custom (Args &&...args) |
Sets user defined data that will never be used by the library. | |
Meta factory to be used for reflection purposes.
Type | Reflected type for which the factory was created. |
Definition at line 166 of file factory.hpp.
|
inlinenoexcept |
Default constructor.
Definition at line 189 of file factory.hpp.
|
inlinenoexcept |
Context aware constructor.
area | The context into which to construct meta types. |
Definition at line 196 of file factory.hpp.
|
inlinenoexcept |
Assigns a meta base to a meta type.
A reflected base class must be a real base class of the reflected type.
Base | Type of the base class to assign to the meta type. |
Definition at line 218 of file factory.hpp.
|
inlinenoexcept |
Assigns a meta conversion function to a meta type.
Conversion functions can be either free functions or member functions.
In case of free functions, they must accept a const reference to an instance of the parent type as an argument. In case of member functions, they should have no arguments at all.
Candidate | The actual function to use for the conversion. |
Definition at line 238 of file factory.hpp.
|
inlinenoexcept |
Assigns a meta conversion function to a meta type.
The given type must be such that an instance of the reflected type can be converted to it.
To | Type of the conversion function to assign to the meta type. |
Definition at line 255 of file factory.hpp.
|
inlinenoexcept |
Assigns a meta constructor to a meta type.
Both member functions and free function can be assigned to meta types in the role of constructors. All that is required is that they return an instance of the underlying type.
From a client's point of view, nothing changes if a constructor of a meta type is a built-in one or not.
Candidate | The actual function to use as a constructor. |
Policy | Optional policy (no policy set by default). |
Definition at line 276 of file factory.hpp.
|
inlinenoexcept |
Assigns a meta constructor to a meta type.
A meta constructor is uniquely identified by the types of its arguments and is such that there exists an actual constructor of the underlying type that can be invoked with parameters whose types are those given.
Args | Types of arguments to use to construct an instance. |
Definition at line 295 of file factory.hpp.
|
inline |
Sets user defined data that will never be used by the library.
Value | Type of user defined data to store. |
Args | Types of arguments to use to construct the user data. |
args | Parameters to use to initialize the user data. |
Definition at line 535 of file factory.hpp.
|
inlinenoexcept |
Assigns a meta data to a meta type.
Both data members and static and global variables, as well as constants of any kind, can be assigned to a meta type.
From a client's point of view, all the variables associated with the reflected object will appear as if they were part of the type itself.
Data | The actual variable to attach to the meta type. |
Policy | Optional policy (no policy set by default). |
id | Unique identifier. |
Definition at line 345 of file factory.hpp.
|
inlinenoexcept |
Assigns a meta data to a meta type by means of its setter and getter.
Setters and getters can be either free functions, member functions or a mix of them.
In case of free functions, setters and getters must accept a reference to an instance of the parent type as their first argument. A setter has then an extra argument of a type convertible to that of the parameter to set.
In case of member functions, getters have no arguments at all, while setters has an argument of a type convertible to that of the parameter to set.
Setter | The actual function to use as a setter. |
Getter | The actual function to use as a getter. |
Policy | Optional policy (no policy set by default). |
id | Unique identifier. |
Definition at line 404 of file factory.hpp.
|
inlinenoexcept |
Assigns a meta data to a meta type by means of its setters and getter.
Multi-setter support for meta data members. All setters are tried in the order of definition before returning to the caller.
Setters can be either free functions, member functions or a mix of them and are provided via a value_list
type.
Setter | The actual functions to use as setters. |
Getter | The actual getter function. |
Policy | Optional policy (no policy set by default). |
id | Unique identifier. |
Definition at line 455 of file factory.hpp.
|
inlinenoexcept |
Assigns a meta destructor to a meta type.
Both free functions and member functions can be assigned to meta types in the role of destructors.
The signature of a free function should be identical to the following:
Member functions should not take arguments instead.
The purpose is to give users the ability to free up resources that require special treatment before an object is actually destroyed.
Func | The actual function to use as a destructor. |
Definition at line 324 of file factory.hpp.
|
inlinenoexcept |
Assigns a meta function to a meta type.
Both member functions and free functions can be assigned to a meta type.
From a client's point of view, all the functions associated with the reflected object will appear as if they were part of the type itself.
Candidate | The actual function to attach to the meta type. |
Policy | Optional policy (no policy set by default). |
id | Unique identifier. |
Definition at line 474 of file factory.hpp.
|
inline |
Assigns a property to the last created meta object.
Both the key and the value (if any) must be at least copy constructible.
Value | Optional type of the property value. |
id | Property key. |
value | Optional property value. |
Definition at line 501 of file factory.hpp.
|
inline |
Sets traits on the last created meta object.
The assigned value must be an enum and intended as a bitmask.
Value | Type of the traits value. |
value | Traits value. |
Definition at line 521 of file factory.hpp.
|
inlinenoexcept |
Assigns a custom unique identifier to a meta type.
id | A custom unique identifier. |
Definition at line 204 of file factory.hpp.