<stl.h>


#include <algorithm>
#include <deque>
#include <functional>
#include <iterator>
#include <list>
#include <map>
#include <memory>
#include <numeric>
#include <queue>
#include <set>
#include <stack>
#include <utility>
#include <vector>
using namespace std;

Include the special header <stl.h> to effectively include all the standard headers that constitute the Standard Template Library (STL) and hoist their names outside the std namespace. The header also redefines the STL container template classes to match their more traditional definitions.


See also the Table of Contents and the Index.

Copyright © 1992-1996 by P.J. Plauger. Portions derived from work copyright © 1994 by Hewlett-Packard Company. All rights reserved.