SFML を使用してスレッド化されたアプリケーションを作成しようとしていますが、スレッドを作成するときにこのエラーが発生しました。
error C2064: term does not evaluate to a function taking 1 arguments
これは私のコードであり、基本的に行うことは、ネットワークのリッスンと受け入れをセットアップすることです。私が達成しようとしているのは、main
.
#include "Networking.h"
Networking::Networking(void)
{
sf::Thread thread(&Networking::TCPSocket, 1000);
thread.launch();
}
Networking::~Networking(void)
{
SetNetworking(false);
}
void Networking::TCPSocket(int port)
{
InitNetworking();
sf::TcpSocket client;
sf::TcpListener listener;
// bind the listener to a port
if (listener.listen(port) != sf::Socket::Done)
{
Logger::Wrn("Could not bind to port:", port);
} else {
Logger::Log("Successfully bound to port:", port);
}
Logger::Log("Ready to receive connections");
while(IsNeworkRunning() == true)
{
if(listener.accept(client) == sf::Socket::Done)
{
Logger::Log("New connection received from");
} else {
Logger::Wrn("Connection from", client.getRemoteAddress(), "could not connect");
}
}
}
void Networking::SetNetworking(bool i)
{
i = this->_networkStarted;
}
bool Networking::IsNeworkRunning()
{
if(_networkStarted == false)
{
Logger::Err("Failed to initialise the networking");
exit(EXIT_FAILURE);
} else {
return _networkStarted;
}
}
void Networking::InitNetworking()
{
SetNetworking(true);
Logger::Log("Network initialised");
}
それは、ヘッダーが必要な場合にエラーが発生している.cppです。投稿できますが、そうするかどうかはわかりません。
助けてくれてありがとう。