Files correlati : Ricompilazione Demo : [ ] Commento : Migliorie varie sul frontend git-svn-id: svn://10.65.10.50/trunk@7679 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			38 lines
		
	
	
		
			798 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			798 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
 | 
						|
	DECLARE_MESSAGE_MAP()
 | 
						|
};
 | 
						|
 | 
						|
 | 
						|
/////////////////////////////////////////////////////////////////////////////
 |