我开发了一个 Win32 DLL,提供了下面的详细信息,并希望为函数 Connnect 和 LogOut 创建一个 CLI/C++ 包装器。
我知道整个类和函数都可以从 DLL 中导出。
class CClientLib
{
public:
CClientLib (void);
// TODO: add your methods here.
__declspec(dllexport) bool Connect(char* strAccountUID,char* strAccountPWD);
__declspec(dllexport) void LogOut();
private :
Account::Ref UserAccount ;
void set_ActiveAccount(Account::Ref act)
{
// Set the active account
}
Account::Ref get_ActiveAccount()
{
return UserAccount;
}
};
我想让类作为导出函数,Connect 和 LogOut,使用函数 set/get。
是否可以只导出函数 Connect 和 LogOut,而不是整个类。