From 96583fe0e48e578ce8f9cf7facde7c059e642c85 Mon Sep 17 00:00:00 2001 From: Razvan Becheriu Date: Fri, 15 May 2020 18:09:45 +0300 Subject: [PATCH] [#1127] addressed review --- src/lib/hooks/hooks_manager.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/lib/hooks/hooks_manager.h b/src/lib/hooks/hooks_manager.h index 0f452b2e1d..911d8af741 100644 --- a/src/lib/hooks/hooks_manager.h +++ b/src/lib/hooks/hooks_manager.h @@ -485,15 +485,21 @@ private: /// @brief Initialization to No Libraries /// - /// Initializes the hooks manager with an "empty set" of libraries. + /// Initializes the hooks manager with an empty set of libraries. void init(); // Members /// Set of library managers. + /// + /// @node: This should always be initialized using @ref init or + /// @ref loadLibraries. boost::shared_ptr lm_collection_; /// Callout manager for the set of library managers. + /// + /// @node: This should always be initialized using @ref init or + /// @ref loadLibraries. boost::shared_ptr callout_manager_; /// Test flag to keep @ref callout_manager_ when calling @ref loadLibraries