stdafx.h 377 B

123456789101112131415161718192021222324
  1. #ifndef STDAFX_H
  2. #define STDAFX_H
  3. #pragma warning(disable:4786)
  4. #include <afxwin.h> // Core
  5. #include <afxrich.h> // CRich edit
  6. #include <afxhtml.h> // CHtmlView
  7. #include "../stdutil/stdutil.h"
  8. #include <map>
  9. #include <set>
  10. #include <list>
  11. #include <vector>
  12. #include <string>
  13. #include <sstream>
  14. #include <fstream>
  15. #include <iostream>
  16. using namespace std;
  17. #endif