38 lines
		
	
	
		
			905 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			905 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
// ex02mfc.h : main header file for the EX02MFC application
 | 
						|
//
 | 
						|
 | 
						|
#ifndef __AFXWIN_H__
 | 
						|
	#error include 'ex02std.h' before including this file for PCH
 | 
						|
#endif
 | 
						|
 | 
						|
#include "ex02res.h"		// main symbols
 | 
						|
 | 
						|
/////////////////////////////////////////////////////////////////////////////
 | 
						|
// CEx02mfcApp:
 | 
						|
// See ex02mfc.cpp for the implementation of this class
 | 
						|
//
 | 
						|
 | 
						|
class CEx02mfcApp : public CWinApp
 | 
						|
{
 | 
						|
public:
 | 
						|
	CEx02mfcApp();
 | 
						|
 | 
						|
// Overrides
 | 
						|
	// ClassWizard generated virtual function overrides
 | 
						|
	//{{AFX_VIRTUAL(CEx02mfcApp)
 | 
						|
	public:
 | 
						|
	virtual BOOL InitInstance();
 | 
						|
	//}}AFX_VIRTUAL
 | 
						|
 | 
						|
// Implementation
 | 
						|
 | 
						|
	//{{AFX_MSG(CEx02mfcApp)
 | 
						|
		// NOTE - the ClassWizard will add and remove member functions here.
 | 
						|
		//    DO NOT EDIT what you see in these blocks of generated code !
 | 
						|
	//}}AFX_MSG
 | 
						|
	DECLARE_MESSAGE_MAP()
 | 
						|
};
 | 
						|
 | 
						|
 | 
						|
/////////////////////////////////////////////////////////////////////////////
 |