53 lines
1.3 KiB
C++
53 lines
1.3 KiB
C++
#if !defined(AFX_CHECKZONES_H__18ADE2F1_05B7_11D2_B408_00A0244F34C3__INCLUDED_)
|
|
#define AFX_CHECKZONES_H__18ADE2F1_05B7_11D2_B408_00A0244F34C3__INCLUDED_
|
|
|
|
#if _MSC_VER >= 1000
|
|
#pragma once
|
|
#endif // _MSC_VER >= 1000
|
|
// checkzones.h : header file
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CCheckZones dialog
|
|
|
|
class CPA_Actor;
|
|
class CCheckZones : public CDialog
|
|
{
|
|
// Construction
|
|
public:
|
|
CCheckZones(CPA_Actor *pActor, CStringList *pZonesList, CWnd* pParent = NULL); // standard constructor
|
|
|
|
// Dialog Data
|
|
//{{AFX_DATA(CCheckZones)
|
|
enum { IDD = IDD_CHECK_ZONES_AGAINST_BV };
|
|
CListBox m_ctrlZonesList;
|
|
CButton m_ctrlYes;
|
|
CButton m_ctrlCheckZonesAgainstBV;
|
|
//}}AFX_DATA
|
|
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(CCheckZones)
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
protected:
|
|
CPA_Actor *m_pActor;
|
|
CStringList *m_pZonesList;
|
|
|
|
// Generated message map functions
|
|
//{{AFX_MSG(CCheckZones)
|
|
virtual void OnOK();
|
|
virtual BOOL OnInitDialog();
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
|
|
|
|
#endif // !defined(AFX_CHECKZONES_H__18ADE2F1_05B7_11D2_B408_00A0244F34C3__INCLUDED_)
|