home *** CD-ROM | disk | FTP | other *** search
/ Mastering MFC Development / MMD.ISO / samples / c10 / query / dialoglatlon.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-20  |  1.1 KB  |  47 lines

  1. #ifndef __DIALOGLATLON_H__
  2. #define __DIALOGLATLON_H__
  3.  
  4. // DialogLatLon.h : header file
  5. //
  6.  
  7. /////////////////////////////////////////////////////////////////////////////
  8. // CDialogLatLon dialog
  9.  
  10. class CDialogLatLon : public CDialog
  11. {
  12. // Construction
  13. public:
  14.     CDialogLatLon(CWnd* pParent = NULL);   // standard constructor
  15.  
  16. // Dialog Data
  17.     //{{AFX_DATA(CDialogLatLon)
  18.     enum { IDD = IDD_DIALOG_LATLON };
  19.     double    m_EastLongitude;
  20.     double    m_NorthLatitude;
  21.     double    m_SouthLatitude;
  22.     double    m_WestLongitude;
  23.     //}}AFX_DATA
  24.  
  25.  
  26. // Overrides
  27.     // ClassWizard generated virtual function overrides
  28.     //{{AFX_VIRTUAL(CDialogLatLon)
  29.     protected:
  30.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  31.     //}}AFX_VIRTUAL
  32.  
  33. // Implementation
  34. protected:
  35.  
  36.     // Generated message map functions
  37.     //{{AFX_MSG(CDialogLatLon)
  38.         // NOTE: the ClassWizard will add member functions here
  39.     //}}AFX_MSG
  40.     DECLARE_MESSAGE_MAP()
  41. };
  42.  
  43. //{{AFX_INSERT_LOCATION}}
  44. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  45.  
  46. #endif // __DIALOGLATLON_H__
  47.