5#include "../global.hpp"
6#include "../string.hpp"
19 explicit DynLoader(
const String &name);
20 DynLoader(
const DynLoader &other) =
delete;
21 DynLoader &operator=(
const DynLoader &other) =
delete;
22 DynLoader(DynLoader &&other) =
delete;
23 DynLoader &operator=(DynLoader &&other) =
delete;
26 void *LoadSymbol(
const String &name)
noexcept;
29 void *handle_ =
nullptr;
31 DynLoader &operator()(DynLoader &&) =
delete;
32 DynLoader &operator()(
const DynLoader &) =
delete;
42# include "detail_dyn_loader_windows.hpp"
44# include "detail_dyn_loader_linux.hpp"
Root namespace for the Image Manager interface.
Definition c_bayer_to_rgb.h:17
std::string String
String for wide characters or unicode characters.
Definition string.hpp:49