feat: 用Boost.DLL从指定目录用加载动态链接库!

This commit is contained in:
2025-02-28 21:14:32 +08:00
commit c5204ba3a0
10 changed files with 150 additions and 0 deletions

11
include/interface.hpp Normal file
View File

@ -0,0 +1,11 @@
#pragma once
#include <string>
#include <boost/config.hpp>
class BOOST_SYMBOL_VISIBLE Interface {
public:
virtual const std::string name() const = 0;
virtual ~Interface() {}
};