|
Ah, glad you figured it out. Here is a little tip: don't add "using namespace std;" in files. Every file that depends on it is forced to use the same namepspace. This defeats the purpose of namespaces. Since you are looking for a new style, I'd reccomend to always type std:: explicitly like I did. It's more typing but at least it is correct. Good luck!
__________________
|