39 lines
		
	
	
		
			825 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			825 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
// FrontEnd.h : main header file for the FRONTEND application
 | 
						|
//
 | 
						|
 | 
						|
#ifndef __AFXWIN_H__
 | 
						|
	#error include 'stdafx.h' before including this file for PCH
 | 
						|
#endif
 | 
						|
 | 
						|
#include "resource.h"       // main symbols
 | 
						|
 | 
						|
/////////////////////////////////////////////////////////////////////////////
 | 
						|
// CFrontEndApp:
 | 
						|
// See FrontEnd.cpp for the implementation of this class
 | 
						|
//
 | 
						|
 | 
						|
class CFrontEndApp : public CWinApp
 | 
						|
{
 | 
						|
public:
 | 
						|
	CFrontEndApp();
 | 
						|
 | 
						|
// Overrides
 | 
						|
	// ClassWizard generated virtual function overrides
 | 
						|
	//{{AFX_VIRTUAL(CFrontEndApp)
 | 
						|
	public:
 | 
						|
	virtual BOOL InitInstance();
 | 
						|
	virtual int ExitInstance();
 | 
						|
	//}}AFX_VIRTUAL
 | 
						|
 | 
						|
// Implementation
 | 
						|
 | 
						|
	//{{AFX_MSG(CFrontEndApp)
 | 
						|
	afx_msg void OnAppAbout();
 | 
						|
	afx_msg void OnAppExit();
 | 
						|
	//}}AFX_MSG
 | 
						|
	DECLARE_MESSAGE_MAP()
 | 
						|
};
 | 
						|
 | 
						|
 | 
						|
/////////////////////////////////////////////////////////////////////////////
 |