Hi, I just started using SFML by several recommendations and decided to put up a little program. It is based on the OpenGL example I found from the official SFML site. Now, I have a problem: sf::Clock is a bitch to work with. No joke.
After I saw the definition (sf::Clock Clock) in the main function, I was like: "Hmm, this clock would be defined somewhere else, to make the main function itself more clear". Then, I decided to put it into my windowing system class as a private object. Simple, right, but it doesn´t work, unlike the RenderWindow object does. With the Clock -object it always complains about Non-Copyable thing. What´s wrong?
Post the code. Try reproducing the same error in as little code as you can. I don't think there should be any problems with copying an sf::Clock though..