SFML community forums

Help => Network => Topic started by: hammad khan on September 16, 2013, 09:37:59 am

Title: nonCopyable class error
Post by: hammad khan on September 16, 2013, 09:37:59 am
and when i do this i got this i get the following error.

sf::Thread thread( &sf::TcpSocket::receive, socket);
thread.launch();

error on the first argument is the unknown type error.

and when i do this

void send( sf::TcpSocket socket )

and create a thread like this

sf::Thread thread( &send, socket);
thread.launch();
 get the following error

Error   1   error C2248: 'sf::NonCopyable::NonCopyable' : cannot access private member declared in class 'sf::NonCopyable'   c:\users\destraction\desktop\laurentgomila-sfml-ef78b6d\include\sfml\network\socket.hpp   178   1   sfml 3.0
Title: Re: nonCopyable class error
Post by: Laurent on September 16, 2013, 09:48:52 am
Socket classes are not copyable, you must pass a reference or a pointer to your socket to the thread constructor.