findObserver overloads
Declared in <ball_loggermanager.h>
Return a shared pointer to the named observer.
bsl::shared_ptr<Observer>
findObserver(std::string_view const& observerName);
» more...
Return a shared pointer to the named observer.
bsl::shared_ptr<Observer const>
findObserver(std::string_view const& observerName) const;
» more...
Load a typed shared pointer to the named observer into result.
template<class t_OBSERVER>
int
findObserver(
bsl::shared_ptr<t_OBSERVER>* result,
std::string_view const& observerName);
» more...
Load a typed shared pointer to the named observer into result.
template<class t_OBSERVER>
int
findObserver(
bsl::shared_ptr<t_OBSERVER const>* result,
std::string_view const& observerName) const;
» more...
| Name | Description |
|---|---|
| observerName | name of the observer to find |
| result | destination for the typed shared pointer to the observer |