// SevereErrDlg.h : header file
//

#include "resource.h"

/////////////////////////////////////////////////////////////////////////////
// CSevereErrDlg dialog

class CSevereErrDlg : public CDialog
{
// Construction
public:
	CSevereErrDlg(CWnd* pParent = NULL);   // standard constructor

	CString	m_csCaption;
// Dialog Data
	//{{AFX_DATA(CSevereErrDlg)
	enum { IDD = IDD_SEVERE_ERROR };
	CButton	m_btnCaption_WhatHappened;
	CButton	m_btnCaption_Results;
	CButton	m_btnCaption_CorrectiveAction;
	CButton	m_btnCaption_Comments;
	CString	m_csComments;
	CString	m_csCorrectiveAction;
	CString	m_csResults;
	CString	m_csWhatHappened;
	//}}AFX_DATA
	UINT		m_nResult;
	CString	m_csCaption_WhatHappened;
	CString	m_csCaption_Results;
	CString	m_csCaption_CorrectiveAction;
	CString	m_csCaption_Comments;

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CSevereErrDlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(CSevereErrDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnReportError();
	virtual void OnCancel();
	virtual void OnOK();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

