调用 DLL 中的类的成员函数
头文件是这样的:class QiChuanClient
{
public:
__declspec(dllexport) QiChuanClient(std::string server, std::string processdir, std::string accessToken, int maxWorkers);
__declspec(dllexport) ~QiChuanClient();
// Assign a upload task and return the task ID
__declspec(dllexport) long assignUploadTask(std::string path);
// return RET_CODE_SUCCESS, RET_CODE_TASK_NOT_FOUND, RET_CODE_TASK_ALREADY_STOPPED
__declspec(dllexport) int pause(long taskId);
...........
}
看起来 没有导出类 而是导出类的构造函数、成员函数
那么我在测试工程中要怎么创建这个类并调用它的成员函数?