blob: 9b75a4068b8c1c806864579c269f10c710fb4c56 [file] [log] [blame]
Patrick Venture4dc584d2018-09-27 15:00:46 -07001#pragma once
2
3#include <string>
4
5namespace 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 */
13void loadLibraries(const std::string& path);
14
15} // namespace blobs