BioCMAMC-ST
udf_handle.hpp
1#ifndef __UDF_HANDLE_HPP__
2#define __UDF_HANDLE_HPP__
3
4#include <common/results.hpp>
5#include <memory>
6#ifdef USE_UDF
7# include <udf_includes.hpp>
8#endif
9
10#ifndef USE_UDF
11struct DynamicLibrary;
12#endif
13
14namespace Unsafe
15{
17 load_udf(std::string_view model_name);
18} // namespace Unsafe
19#endif
Definition udf_handle.hpp:15
Result< std::shared_ptr< DynamicLibrary >, std::string > load_udf(std::string_view model_name)
Definition udf_handle.cpp:13
Definition results.hpp:12