stdafx.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. // stdafx.h : standard system include file,
  2. // or commonly used project include file.
  3. #pragma once
  4. #ifndef VC_EXTRALEAN
  5. #define VC_EXTRALEAN // exclude the rarly used file from the windows head
  6. #endif
  7. #include "targetver.h"
  8. #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // several CString constructors will be explicit
  9. #include <afxwin.h> // MFC core and standard components
  10. #include <afxext.h> // MFC expanded classes
  11. #ifndef _AFX_NO_OLE_SUPPORT
  12. #include <afxole.h> // MFC OLE class
  13. #include <afxodlgs.h> // MFC OLE dialogs
  14. #include <afxdisp.h> // MFC automation classes
  15. #endif // _AFX_NO_OLE_SUPPORT
  16. #ifndef _AFX_NO_DB_SUPPORT
  17. #include <afxdb.h> // MFC ODBC database classes
  18. #endif // _AFX_NO_DB_SUPPORT
  19. #ifndef _AFX_NO_DAO_SUPPORT
  20. #include <afxdao.h> // MFC DAO database classes
  21. #endif // _AFX_NO_DAO_SUPPORT
  22. #ifndef _AFX_NO_OLE_SUPPORT
  23. #include <afxdtctl.h> // MFC to Internet Explorer 4 common controls
  24. #endif
  25. #ifndef _AFX_NO_AFXCMN_SUPPORT
  26. #include <afxcmn.h> // MFC to windows common controls
  27. #endif // _AFX_NO_AFXCMN_SUPPORT
  28. #include <vector>
  29. #include <map>
  30. #include <memory>
  31. #include <fstream>
  32. #include <sstream>
  33. #include <iostream>
  34. #include <functional>
  35. #include <algorithm>
  36. //#include "boost\shared_array.hpp"
  37. //#include "boost\scoped_array.hpp"
  38. //#include "boost\utility.hpp"
  39. //#include "boost\scope_exit.hpp"
  40. //#include "boost\signals2.hpp"
  41. #include <afx.h>
  42. #include "COTSUtilityDllFunExport.h"
  43. #include <afxcontrolbars.h>