The Reflected registry indexes all the Reflecteds by their fully qualified name using '::' delimiters.
ENameSpaceError RegisterReflected(const Reflected* r, XTarget* target)
Register the given Reflected.
r must not be null and r->m_name must be a unique fully qualified name using '::' delimiters.
Possible return values of type ENameSpaceError :
void UnregisterReflected(const Reflected* r)
Unregister the given Reflected.
r must not be null and have been successfully registered before calling this function.
void WriteReflectedRegistry(xostream& os)
Write out the entire registry to the given ostream
const Reflected* TryFindReflected(ConstStringZ fullyQualifiedName)
Returns nullptr on failure to find an entry with the given fully qualified name
const Reflected& FindReflected(ConstStringZ fullyQualifiedName)
Version that throws a ReflectedNotFoundException if not found