summaryrefslogtreecommitdiffabout
path: root/bigbrother.h
blob: 1c348dce0ee32ede3d974d0cd4fe3ebf44dba418 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// BigBrother.h : main header file for the BIGBROTHER application
//

#ifndef __AFXWIN_H__
	#error include 'stdafx.h' before including this file for PCH
#endif

#include "resource.h"       // main symbols

/////////////////////////////////////////////////////////////////////////////
// CBigBrotherApp:
// See BigBrother.cpp for the implementation of this class
//

class CBigBrotherApp : public CWinApp
{
public:
	BOOL m_bLoadMRUOnStartup;
	CBigBrotherApp();

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CBigBrotherApp)
	public:
	virtual BOOL InitInstance();
	virtual int ExitInstance();
	//}}AFX_VIRTUAL

// Implementation

	//{{AFX_MSG(CBigBrotherApp)
	afx_msg void OnAppAbout();
	afx_msg void OnUpdateFileAutoload(CCmdUI* pCmdUI);
	afx_msg void OnFileAutoload();
	afx_msg void OnHelpLegend();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};


/////////////////////////////////////////////////////////////////////////////