// This is the file lab9.h
// Include standard windows functions and classes
#include <afxwin.h>
// We always derive classes from the main MFC classes
// Derive main window class
class COurWin:public CFrameWnd
{
// We shall want control over construction
public:
COurWin();
// We must declare the message map - no semi-colon
DECLARE_MESSAGE_MAP()
};
// Derive application class
class COurApp : public CWinApp
{
// We need to override InitInstance()
BOOL InitInstance();
};