diff options
author | Patrick Venture <venture@google.com> | 2018-09-27 15:00:46 -0700 |
---|---|---|
committer | Patrick Venture <venture@google.com> | 2018-09-30 08:11:25 -0700 |
commit | 4dc584db905b3fe4d2f5aa6bdf647b21512b4dee (patch) | |
tree | b8fe7be417d1c4beabafb3d072dfffe852207a88 /utils.hpp | |
parent | b3e07e2b63bb37b319f942604b5a94f0f13bc486 (diff) | |
download | phosphor-ipmi-blobs-4dc584db905b3fe4d2f5aa6bdf647b21512b4dee.tar.gz phosphor-ipmi-blobs-4dc584db905b3fe4d2f5aa6bdf647b21512b4dee.zip |
utils: add methods for finding and loading handlers
This module provides a couple basic methods for enumerating and then
loading handlers.
Change-Id: I4f58be313190c48de25c2b9578b7c622afefc656
Signed-off-by: Patrick Venture <venture@google.com>
Diffstat (limited to 'utils.hpp')
-rw-r--r-- | utils.hpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/utils.hpp b/utils.hpp new file mode 100644 index 0000000..9b75a40 --- /dev/null +++ b/utils.hpp @@ -0,0 +1,15 @@ +#pragma once + +#include <string> + +namespace blobs +{ + +/** + * @brief Given a path, find libraries (*.so only) and load them. + * + * @param[in] paths - list of fully qualified paths to libraries to load. + */ +void loadLibraries(const std::string& path); + +} // namespace blobs |