summaryrefslogtreecommitdiffabout
path: root/bigbrother.h
authorMichael Krelin <hacker@klever.net>2004-07-05 01:53:09 (UTC)
committer Michael Krelin <hacker@klever.net>2004-07-05 01:53:09 (UTC)
commitfb8b43dbce8bc310718614384297aeaabb9a3cbb (patch) (unidiff)
treeaf9d2c2b71ddffff93a97a02fe26611096b78645 /bigbrother.h
downloadbigbrother-fb8b43dbce8bc310718614384297aeaabb9a3cbb.zip
bigbrother-fb8b43dbce8bc310718614384297aeaabb9a3cbb.tar.gz
bigbrother-fb8b43dbce8bc310718614384297aeaabb9a3cbb.tar.bz2
initial commit into svn repository
git-svn-id: http://svn.klever.net/kin/bigbrother/trunk@1 fe716a7a-6dde-0310-88d9-d003556173a8
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/////////////////////////////////////////////////////////////////////////////