std.h 417 B

1234567891011121314151617181920212223242526
  1. #ifndef STD_H
  2. #define STD_H
  3. //#ifndef _WINSOCKAPI_
  4. //#define _WINSOCKAPI_ /* Prevent inclusion of winsock.h in windows.h */
  5. //#endif
  6. #include <windows.h>
  7. //#include <winsock2.h>
  8. #include "../config/config.h"
  9. #include "../stdutil/stdutil.h"
  10. #include <set>
  11. #include <map>
  12. #include <list>
  13. #include <string>
  14. #include <vector>
  15. #include <iostream>
  16. #include <fstream>
  17. #include <math.h>
  18. using namespace std;
  19. #endif