1 /* -*- c++ -*-
2 FILE: MagicCube4d.h
3 RCS REVISION: $Revision: 1.7 $
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     main header file for the MAGICCUBE4D application
16 */
17 
18 #ifndef __AFXWIN_H__
19     #error include 'stdafx.h' before including this file for PCH
20 #endif
21 
22 #include "Resource.h"       // main symbols
23 
24 /////////////////////////////////////////////////////////////////////////////
25 // CMagicCube4dApp:
26 // See MagicCube4d.cpp for the implementation of this class
27 //
28 
29 class CMagicCube4dApp : public CWinApp
30 {
31 public:
32     CMagicCube4dApp();
33 
34 // Overrides
35     // ClassWizard generated virtual function overrides
36     //{{AFX_VIRTUAL(CMagicCube4dApp)
37     public:
38     virtual BOOL InitInstance();
39     virtual BOOL OnIdle(LONG lCount);
40     //}}AFX_VIRTUAL
41 
42 // Implementation
43 
44     //{{AFX_MSG(CMagicCube4dApp)
45     afx_msg void OnAppAbout();
46         // NOTE - the ClassWizard will add and remove member functions here.
47         //    DO NOT EDIT what you see in these blocks of generated code !
48     //}}AFX_MSG
49     DECLARE_MESSAGE_MAP()
50 };
51 
52 
53 /////////////////////////////////////////////////////////////////////////////
54 
55 // Local Variables:
56 // c-basic-offset: 4
57 // c-comment-only-line-offset: 0
58 // 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))
59 // indent-tabs-mode: nil
60 // End:
61