1 /* -*- c++ -*-
2 FILE: Stdafx.h
3 RCS REVISION: $Revision: 1.8 $
4 
5 COPYRIGHT: (c) 1999 -- 2003 Melinda Green, Don Hatch, and Jay Berkenbilt - Superliminal Software
6 
7 LICENSE: Free to use and modify for non-commercial purposes as long as the
8     following conditions are adhered to:
9     1) Obvious credit for the source of this code and the designs it embodies
10        are clearly made, and
11     2) Ports and derived versions of 4D Magic Cube programs are not distributed
12        without the express written permission of the authors.
13 
14 DESCRIPTION:
15     stdafx.h : include file for standard system include files,
16      or project specific include files that are used frequently, but
17          are changed infrequently
18 */
19 
20 #define VC_EXTRALEAN            // Exclude rarely-used stuff from Windows
21                                 // headers
22 
23 //#include "std.h"  // for STL templates
24 
25 #include <afxwin.h>             // MFC core and standard components
26 #include <afxext.h>             // MFC extensions
27 #ifndef _AFX_NO_AFXCMN_SUPPORT
28 #include <afxcmn.h>             // MFC support for Windows 95 Common Controls
29 #endif // _AFX_NO_AFXCMN_SUPPORT
30 
31 #include "Vec.h"
32 
33 // Local Variables:
34 // c-basic-offset: 4
35 // c-comment-only-line-offset: 0
36 // c-file-offsets: ((defun-block-intro . +) (block-open . 0) (substatement-open . 0) (statement-cont . +) (statement-case-open . +4) (arglist-intro . +) (arglist-close . +) (inline-open . 0))
37 // indent-tabs-mode: nil
38 // End:
39