summaryrefslogtreecommitdiffabout
path: root/bigbrother.h
Unidiff
Diffstat (limited to 'bigbrother.h') (more/less context) (ignore whitespace changes)
-rw-r--r--bigbrother.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/bigbrother.h b/bigbrother.h
new file mode 100644
index 0000000..1c348dc
--- a/dev/null
+++ b/bigbrother.h
@@ -0,0 +1,41 @@
1// BigBrother.h : main header file for the BIGBROTHER application
2//
3
4#ifndef __AFXWIN_H__
5 #error include 'stdafx.h' before including this file for PCH
6#endif
7
8#include "resource.h" // main symbols
9
10/////////////////////////////////////////////////////////////////////////////
11// CBigBrotherApp:
12// See BigBrother.cpp for the implementation of this class
13//
14
15class CBigBrotherApp : public CWinApp
16{
17public:
18 BOOL m_bLoadMRUOnStartup;
19 CBigBrotherApp();
20
21// Overrides
22 // ClassWizard generated virtual function overrides
23 //{{AFX_VIRTUAL(CBigBrotherApp)
24 public:
25 virtual BOOL InitInstance();
26 virtual int ExitInstance();
27 //}}AFX_VIRTUAL
28
29// Implementation
30
31 //{{AFX_MSG(CBigBrotherApp)
32 afx_msg void OnAppAbout();
33 afx_msg void OnUpdateFileAutoload(CCmdUI* pCmdUI);
34 afx_msg void OnFileAutoload();
35 afx_msg void OnHelpLegend();
36 //}}AFX_MSG
37 DECLARE_MESSAGE_MAP()
38};
39
40
41/////////////////////////////////////////////////////////////////////////////