stdafx.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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 <memory>
  31. #include <sstream>
  32. #include "COTSUtilityDllFunExport.h"
  33. #pragma warning( push )
  34. //#pragma warning ( disable : ALL_CODE_ANALYSIS_WARNINGS )
  35. #include "boost\shared_array.hpp"
  36. #include "boost\scoped_array.hpp"
  37. #include "boost\utility.hpp"
  38. #include <iostream>
  39. #include <fstream>
  40. #pragma warning(disable:4651) //Ïû³ý¾¯¸æ warning C4651:
  41. #pragma warning(disable:4005) //Ïû³ý¾¯¸æ warning C4005:
  42. #pragma warning( pop )