www.pudn.com > VC++practise.rar > Calculator.h


// Calculator.h : main header file for the CALCULATOR application 
// 
 
#if !defined(AFX_CALCULATOR_H__876DB16C_86C9_414C_A90D_E9A7A2101F1E__INCLUDED_) 
#define AFX_CALCULATOR_H__876DB16C_86C9_414C_A90D_E9A7A2101F1E__INCLUDED_ 
 
#if _MSC_VER > 1000 
#pragma once 
#endif // _MSC_VER > 1000 
 
#ifndef __AFXWIN_H__ 
	#error include 'stdafx.h' before including this file for PCH 
#endif 
 
#include "resource.h"		// main symbols 
 
///////////////////////////////////////////////////////////////////////////// 
// CCalculatorApp: 
// See Calculator.cpp for the implementation of this class 
// 
 
class CCalculatorApp : public CWinApp 
{ 
public: 
	CCalculatorApp(); 
 
// Overrides 
	// ClassWizard generated virtual function overrides 
	//{{AFX_VIRTUAL(CCalculatorApp) 
	public: 
	virtual BOOL InitInstance(); 
	//}}AFX_VIRTUAL 
 
// Implementation 
 
	//{{AFX_MSG(CCalculatorApp) 
		// 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() 
}; 
 
 
///////////////////////////////////////////////////////////////////////////// 
 
//{{AFX_INSERT_LOCATION}} 
// Microsoft Visual C++ will insert additional declarations immediately before the previous line. 
 
#endif // !defined(AFX_CALCULATOR_H__876DB16C_86C9_414C_A90D_E9A7A2101F1E__INCLUDED_)