123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- // stdafx.h : standard system include file,
- // or commonly used project include file.
- #pragma once
- #ifndef VC_EXTRALEAN
- #define VC_EXTRALEAN // exclude the rarly used file from the windows head
- #endif
- #include "targetver.h"
- #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // several CString constructors will be explicit
- #include <afxwin.h> // MFC core and standard components
- #include <afxext.h> // MFC expanded classes
- #ifndef _AFX_NO_OLE_SUPPORT
- #include <afxole.h> // MFC OLE class
- #include <afxodlgs.h> // MFC OLE dialogs
- #include <afxdisp.h> // MFC automation classes
- #endif // _AFX_NO_OLE_SUPPORT
- #ifndef _AFX_NO_DB_SUPPORT
- #include <afxdb.h> // MFC ODBC database classes
- #endif // _AFX_NO_DB_SUPPORT
- #ifndef _AFX_NO_DAO_SUPPORT
- #include <afxdao.h> // MFC DAO database classes
- #endif // _AFX_NO_DAO_SUPPORT
- #ifndef _AFX_NO_OLE_SUPPORT
- #include <afxdtctl.h> // MFC to Internet Explorer 4 common controls
- #endif
- #ifndef _AFX_NO_AFXCMN_SUPPORT
- #include <afxcmn.h> // MFC to windows common controls
- #endif // _AFX_NO_AFXCMN_SUPPORT
- #include <vector>
- #include <map>
- #include <memory>
- #include <fstream>
- #include <sstream>
- #include <iostream>
- #include <functional>
- #include <algorithm>
- //#include "boost\shared_array.hpp"
- //#include "boost\scoped_array.hpp"
- //#include "boost\utility.hpp"
- //#include "boost\scope_exit.hpp"
- //#include "boost\signals2.hpp"
- #include <afx.h>
- #include "COTSUtilityDllFunExport.h"
- #include <afxcontrolbars.h>
|