Quote:
|
Originally Posted by Rotkiv thanx red. |
You're welcome
Quote:
|
Originally Posted by Rotkiv I was editing the original code. I was told on these forums by valmont or red or someone that using std:: was better in the long run, if you plan on getting into namespaces, then 'using namespace std;' |
That is true, if you plan on having alot of members writing/editing on your code, then the std:: way is better, since you know for sure its the right namespace you're dealing with, than just asuming the "using namespace std" will apply when it reaches your part of the code, if some one else plan on changing that above your code segment.
(don't know if I express myself clear enough here...)