| Patrick Venture | 4dc584d | 2018-09-27 15:00:46 -0700 | [diff] [blame] | 1 | #pragma once |
| 2 | |||||
| 3 | #include <string> | ||||
| 4 | |||||
| 5 | namespace blobs | ||||
| 6 | { | ||||
| 7 | |||||
| 8 | /** | ||||
| 9 | * @brief Given a path, find libraries (*.so only) and load them. | ||||
| 10 | * | ||||
| 11 | * @param[in] paths - list of fully qualified paths to libraries to load. | ||||
| 12 | */ | ||||
| 13 | void loadLibraries(const std::string& path); | ||||
| 14 | |||||
| 15 | } // namespace blobs | ||||