Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
610 B

  1. //+--------------------------------------------------------------------------
  2. //
  3. // Copyright (c) 1997-1999 Microsoft Corporation
  4. //
  5. // File:
  6. //
  7. // Contents:
  8. //
  9. // History:
  10. //
  11. //---------------------------------------------------------------------------
  12. // stl.h supplemental header
  13. #ifndef _STL_H_
  14. #define _STL_H_
  15. #include <algorithm>
  16. #include <deque>
  17. #include <functional>
  18. #include <iterator>
  19. #include <list>
  20. #include <map>
  21. #include <memory>
  22. #include <numeric>
  23. #include <queue>
  24. #include <set>
  25. #include <stack>
  26. #include <utility>
  27. #include <vector>
  28. using namespace std;
  29. #endif /* _STL_H_ */