Topic: Q: STL and namespaces
Author: tab@piis10.joanneum.ac.at (Behnam Tabatabai)
Date: 1996/05/07 Raw View
Is there any STL implementation which can easily be used in the context
of name spaces? Specifically, I mean an STL implementation, where you can
write either
#include <stl.h>
...
vector<int> x;
...
or
namespace std {
#include <stl.h>
}
...
std::vector<int> x;
...
and all this without having to modify the STL sources, as recommended
by Microsoft.
---
[ comp.std.c++ is moderated. To submit articles: Try just posting with your
newsreader. If that fails, use mailto:std-c++@ncar.ucar.edu
comp.std.c++ FAQ: http://reality.sgi.com/austern/std-c++/faq.html
Moderation policy: http://reality.sgi.com/austern/std-c++/policy.html
Comments? mailto:std-c++-request@ncar.ucar.edu
]