STL.h
上传用户:popouu88
上传日期:2013-02-11
资源大小:2894k
文件大小:0k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. #ifndef __STL_H__
  2. #define __STL_H__
  3. ///////////////////////////////////
  4. #pragma warning(disable:4786)
  5. #include <string>
  6. #include <map>
  7. #include <list>
  8. #include <assert.h>
  9. #include <io.h>
  10. #include <stdio.h>
  11. #include <conio.h>
  12. using namespace std ;
  13. typedef list< int >INT_LIST;
  14. typedef map< int , void * >INT_PTR_MAP;
  15. /////////////////////////////////
  16. #endif