// Filename:- stl.h // // pure laziness.... :-) #ifndef STL_H #define STL_H #pragma warning (push, 3) //go back down to 3 for the stl include #include "disablewarnings.h" #include #include #include #include #include #pragma warning (pop) using namespace std; #include "disablewarnings.h" // some common ones... // typedef set StringSet_t; typedef vector StringVector_t; #endif // #ifndef STL_H ////////////////// eof /////////////////