stdafx.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. // stdafx.h : include file for standard system include files,
  2. // or project specific include files that are used frequently, but
  3. // are changed infrequently
  4. #pragma once
  5. #ifndef VC_EXTRALEAN
  6. #define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
  7. #endif
  8. #include "targetver.h"
  9. #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // some CString constructors will be explicit
  10. #include <afxwin.h> // MFC core and standard components
  11. #include <afxext.h> // MFC extensions
  12. #ifndef _AFX_NO_OLE_SUPPORT
  13. #include <afxole.h> // MFC OLE classes
  14. #include <afxodlgs.h> // MFC OLE dialog classes
  15. #include <afxdisp.h> // MFC Automation classes
  16. #endif // _AFX_NO_OLE_SUPPORT
  17. #ifndef _AFX_NO_DB_SUPPORT
  18. #include <afxdb.h> // MFC ODBC database classes
  19. #endif // _AFX_NO_DB_SUPPORT
  20. #ifndef _AFX_NO_DAO_SUPPORT
  21. #include <afxdao.h> // MFC DAO database classes
  22. #endif // _AFX_NO_DAO_SUPPORT
  23. #ifndef _AFX_NO_OLE_SUPPORT
  24. #include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
  25. #endif
  26. #ifndef _AFX_NO_AFXCMN_SUPPORT
  27. #include <afxcmn.h> // MFC support for Windows Common Controls
  28. #endif // _AFX_NO_AFXCMN_SUPPORT
  29. #include <vector>
  30. #include <map>
  31. #include <set>
  32. #include <memory>
  33. #include <sstream>
  34. #include "COTSUtilityDllFunExport.h"
  35. #pragma warning( push )
  36. //#pragma warning ( disable : ALL_CODE_ANALYSIS_WARNINGS )
  37. #include "boost\shared_array.hpp"
  38. #include "boost\scoped_array.hpp"
  39. #include "boost\utility.hpp"
  40. #include <iostream>
  41. #include <fstream>
  42. #pragma warning(disable:4651) //Ïû³ý¾¯¸æ warning C4651:
  43. #pragma warning(disable:4005) //Ïû³ý¾¯¸æ warning C4005:
  44. #pragma warning( pop )