Mirror reflection library 0.5.13
|
MetaNamespace is a type reflecting namespaces. More...
#include <mirror/doc/concepts.hpp>
MetaNamespace is a type reflecting namespaces.
static std::string mirror::MetaNamedObject::base_name | ( | void | ) | [static, inherited] |
Returns the base name of the reflected entity.
This function returns the base name of the reflected construct (type, class, namespace, member variable, etc.) without the nested name specifier.
static std::string mirror::MetaNamedScopedObject::full_name | ( | void | ) | [static, inherited] |
Returns the full name of the reflected entity.
This function returns the full name of the reflected construct (type, class, namespace, member variable, etc.) including the nested name specifier.
static std::string mirror::MetaNamedScopedObject::local_name | ( | void | ) | [static, inherited] |
Returns the local name of the reflected entity.
This function returns the local name of the reflected construct (type, class, namespace, member variable, etc.) including the partial or full nested name specifier, based on whether the parent scope or one of its enclosing scopes of the construct reflected by this MetaNamedScopedObject is used with the MIRROR_USING_NAMESPACE macro.
meta_namespace_tag categorize_meta_object | ( | MetaNamespace | ) | [friend] |
Reimplemented in mirror::MetaGlobalScope.
meta_named_object_tag categorize_meta_object | ( | MetaNamedObject | ) | [friend, inherited] |
meta_object_tag categorize_meta_object | ( | MetaObject | ) | [friend, inherited] |
This function can be used to determine if a type is a MetaObject
meta_scoped_object_tag categorize_meta_object | ( | MetaScopedObject | ) | [friend, inherited] |
meta_scope_tag categorize_meta_object | ( | MetaScope | ) | [friend, inherited] |
meta_named_scoped_object_tag categorize_meta_object | ( | MetaNamedScopedObject | ) | [friend, inherited] |
friend struct free_functions< MetaNamespace > [friend] |
Meta-function returning a range of MetaOverloadedFunctions
friend struct free_variables< MetaNamespace > [friend] |
Meta-function returning a range of MetaFreeVariables which are reflecting the free variables of the reflected namespace.
friend struct is_a< MetaObject, ConceptTag > [friend, inherited] |
Meta-function for checking if the MetaObject conforms to a concept.
This meta-function returns std::true_type if a MetaObject conforms to the concept identified by the ConceptTag
. Returns std::false_type otherwise.
friend struct namespaces< MetaNamespace > [friend] |
Meta-function returning a range of MetaNamespaces which are reflecting the nested namespaces of the reflected namespace.
friend struct scope< MetaScopedObject > [friend, inherited] |