STL.h

Go to the documentation of this file.
00001 //
00002 //  Copyright (c) 2003-2006 by Autodesk, Inc.
00003 //
00004 //  By using this code, you are agreeing to the terms and conditions of
00005 //  the License Agreement included in the documentation for this code.
00006 //
00007 //  AUTODESK MAKES NO WARRANTIES, EXPRESS OR IMPLIED,
00008 //  AS TO THE CORRECTNESS OF THIS CODE OR ANY DERIVATIVE
00009 //  WORKS WHICH INCORPORATE IT.
00010 //
00011 //  AUTODESK PROVIDES THE CODE ON AN "AS-IS" BASIS
00012 //  AND EXPLICITLY DISCLAIMS ANY LIABILITY, INCLUDING
00013 //  CONSEQUENTIAL AND INCIDENTAL DAMAGES FOR ERRORS,
00014 //  OMISSIONS, AND OTHER PROBLEMS IN THE CODE.
00015 //
00016 //  Use, duplication, or disclosure by the U.S. Government is subject to
00017 //  restrictions set forth in FAR 52.227-19 (Commercial Computer Software
00018 //  Restricted Rights) and DFAR 252.227-7013(c)(1)(ii) (Rights in Technical
00019 //  Data and Computer Software), as applicable.
00020 //
00021 
00022 #ifndef _DWFCORE_STL_H
00023 #define _DWFCORE_STL_H
00024 
00025 #include "dwfcore/Core.h"
00026 
00027 // VC9.0 can set _SECURE_SCL to be 0 which is 1 by default to release configuration.
00028 // The performance will be improved much by setting it to be 0.
00029 // So some users would like to set it to be 0. But, if TK don't set it to be 0,
00030 // Clients' application with 0 can't work with it. So we have to provide them 
00031 // the DLLs with this configuration. 
00032 #ifdef   _SECURE_SCL_DISABLE
00033 #include "dwfcore/CompileConfig.h"
00034 #endif
00035 
00040 
00051 
00052 #ifdef  _DWFCORE_WIN32_SYSTEM
00053 #pragma warning(push)
00054 #pragma warning(disable: 4702)
00055 #endif
00056 
00057 #include <set>
00058 #include <map>
00059 #include <list>
00060 #include <queue>
00061 #include <vector>
00062 #include <algorithm>
00063 #include <iterator>
00064 
00065 using namespace std;
00066 
00067 #ifdef  _DWFCORE_WIN32_SYSTEM
00068 #pragma warning(pop)
00069 #endif
00070 
00071 
00072 #endif
00073 

Generated on Tue Jan 6 22:39:29 2009 for Autodesk DWF Core Library by  doxygen 1.4.5