57 lines
1.8 KiB
C++
57 lines
1.8 KiB
C++
//ROMTEAM Networks (Gabriela Dumitrascu 25/02/98)
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// Description : IsoWpDia.hpp
|
|
//
|
|
// Definition of the waypoint
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// inherit from : CDialog
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// Creation date: 1998-02-23 Author: CPA2 Gabriela Dumitrascu
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// Modification date: Author:
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// IsoWPDia dialog
|
|
|
|
class IsoWPDia : public CDialog
|
|
{
|
|
public:
|
|
CPA_List<WayPoint> m_oListOfWP;
|
|
CPA_List<WayPoint> m_oListOfSelWP;
|
|
|
|
// Construction
|
|
public:
|
|
IsoWPDia(CWnd* pParent = NULL); // standard constructor
|
|
|
|
// Dialog Data
|
|
//{{AFX_DATA(IsoWPDia)
|
|
enum { IDD = IDD_ISOLATE_WP };
|
|
CListBox m_IsoWpList;
|
|
//}}AFX_DATA
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(IsoWPDia)
|
|
public:
|
|
virtual BOOL Create(LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID, CCreateContext* pContext = NULL);
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
protected:
|
|
|
|
// Generated message map functions
|
|
//{{AFX_MSG(IsoWPDia)
|
|
virtual void OnOK();
|
|
virtual BOOL OnInitDialog();
|
|
afx_msg void OnDestroy();
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
|
|
//ENDROMTEAM Networks (Gabriela Dumitrascu)
|