Dekel Tsur <[EMAIL PROTECTED]> writes:

| What I meant was that instead of
|    using std::copy;
|    using std::ostream_iterator;
|    copy(files.begin(), files.end(),
|        ostream_iterator<string>(ofs, "\n"));
|               
| you can write
|    std::copy(files.begin(), files.end(),
|        std::ostream_iterator<string>(ofs, "\n"));
|         

mmm...I want to do that...but so far I have not dared. Eventually
"using" should not be used in headers at all, and as little as
possible in filescope. 

        Lgb

Reply via email to