Skip to content

Commit

Permalink
Update Factory.h doxygen return comments (#646)
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-metzger-z authored Aug 7, 2024
1 parent f62e4df commit 717376d
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions Include/RmlUi/Core/Factory.h
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@ class RMLUICORE_API Factory {
/// @param[in] name The name of the decorator the instancer will be called for.
/// @param[in] instancer The instancer to call when the decorator name is encountered.
/// @lifetime The instancer must be kept alive until after the call to Rml::Shutdown.
/// @return The added instancer if the registration was successful, nullptr otherwise.
static void RegisterDecoratorInstancer(const String& name, DecoratorInstancer* instancer);
/// Retrieves a decorator instancer registered with the factory.
/// @param[in] name The name of the desired decorator type.
Expand All @@ -136,7 +135,6 @@ class RMLUICORE_API Factory {
/// @param[in] name The name of the filter the instancer will be called for.
/// @param[in] instancer The instancer to call when the filter name is encountered.
/// @lifetime The instancer must be kept alive until after the call to Rml::Shutdown.
/// @return The added instancer if the registration was successful, nullptr otherwise.
static void RegisterFilterInstancer(const String& name, FilterInstancer* instancer);
/// Retrieves a filter instancer registered with the factory.
/// @param[in] name The name of the desired filter type.
Expand All @@ -147,7 +145,6 @@ class RMLUICORE_API Factory {
/// @param[in] name The name of the font effect the instancer will be called for.
/// @param[in] instancer The instancer to call when the font effect name is encountered.
/// @lifetime The instancer must be kept alive until after the call to Rml::Shutdown.
/// @return The added instancer if the registration was successful, nullptr otherwise.
static void RegisterFontEffectInstancer(const String& name, FontEffectInstancer* instancer);
/// Retrieves a font-effect instancer registered with the factory.
/// @param[in] name The name of the desired font-effect type.
Expand Down

0 comments on commit 717376d

Please sign in to comment.