I tried the examples from 1.6 but I get this error:
error C2512: 'sf::Thread' : no appropriate default constructor available
class MyClass : private sf::Thread
{
public :
void DoSomething()
{
Launch();
}
private :
virtual void Run()
{
// Do something...
}
};