core/vgui/impl/mfc/vgui_mfc_app.h
Go to the documentation of this file.
00001 // This is core/vgui/impl/mfc/vgui_mfc_app.h
00002 #ifndef AFX_VGUIMFCAPP_H__259D1B15_6A52_45B3_B335_8A7C78097A13__INCLUDED_
00003 #define AFX_VGUIMFCAPP_H__259D1B15_6A52_45B3_B335_8A7C78097A13__INCLUDED_
00004 //:
00005 // \file
00006 // \brief  Defines CWinApp which initialises all the MRC stuff.
00007 // \author Marko Bacic, Oxford RRG
00008 // \date   27 July 2000
00009 //
00010 //  Contains class  vgui_mfc_app
00011 //
00012 // \verbatim
00013 //  Modifications
00014 //   23-AUG-2000 Marko Bacic, Oxford RRG -- Added support for scroll bars
00015 // \endverbatim
00016 
00017 #if _MSC_VER > 1000
00018 #pragma once
00019 #endif // _MSC_VER > 1000
00020 
00021 #ifndef __AFXWIN_H__
00022         #error include 'StdAfx.h' before including this file for PCH
00023 #endif
00024 
00025 #include "resource.h"       // main symbols
00026 
00027 //:  Defines CWinApp which initialises all the MFC stuff.
00028 //
00029 //   This application class (CWinApp) is instantiated once
00030 //   and only once in the application and initialises all the MFC stuff
00031 class vgui_mfc_app : public CWinApp
00032 {
00033  public:
00034   vgui_mfc_app();
00035 
00036   virtual BOOL InitInstance();
00037   virtual BOOL Run();
00038   virtual BOOL OnIdle( LONG lcount );
00039 };
00040 
00041 
00042 /////////////////////////////////////////////////////////////////////////////
00043 
00044 //{{AFX_INSERT_LOCATION}}
00045 // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
00046 
00047 #endif // AFX_VGUIMFCAPP_H__259D1B15_6A52_45B3_B335_8A7C78097A13__INCLUDED_