Hey, this isn't exactly an end of the world problem more a comfort issue. I've been using dirent.h recently and its been written for C as oppose for C++. So for outputting statements I'm having to use printf() etc and for someone who never initially learned C i much prefer the std::cout syntax. My question is, can I overload the insertion operators to use std::cout << instead of printf()?
Yeah that's what I thought, but when I tried to ouput a CString member of an object of type DIR I was getting an error not being able to do something or other. On second attmept it works fine though. Must have not been concentrating or something!