author | Michael Krelin <hacker@klever.net> | 2004-07-05 01:53:09 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2004-07-05 01:53:09 (UTC) |
commit | fb8b43dbce8bc310718614384297aeaabb9a3cbb (patch) (side-by-side diff) | |
tree | af9d2c2b71ddffff93a97a02fe26611096b78645 /bigbrother.h | |
download | bigbrother-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
-rw-r--r-- | bigbrother.h | 41 |
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 @@ +// 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()
+};
+
+
+/////////////////////////////////////////////////////////////////////////////
|