I've made a test project to make a class to manage my data using io streams from <fstream> and <iostream>, paralelly to my main project which uses SFML libs.
As these libs were in a general debug sheet (sfml debug graphics, window ,..), they were included in my test project, and when I compiled, I got a hundred errors conflicting with standard stream headers.
I deleted these libs from my test project, and it compiled fine, the problem is I will need to include this data class to my main project whose SFML libraries I can't delete, obviously
What I am doing wrong? :S
What is conflicting and how?
What: SFML + <fstream> / <iostream>
How: that's part of what I want to know