home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_12_09 / single2 / stdafx.h < prev   
Encoding:
C/C++ Source or Header  |  1994-08-07  |  404 b   |  14 lines

  1. //  stdafx.h : include file for standard system include files,
  2. //  or project specific include files that are used frequently, but
  3. //  are changed infrequently
  4. //
  5.  
  6. #include    <afxwin.h>          // MFC core and standard components
  7.  
  8. #include    <iostream.h>
  9.  
  10. #if !defined (_DEBUG)
  11.     //  Kill off inlining warnings when compiling release variant
  12.     #pragma warning (disable : 4711)
  13. #endif
  14.