home *** CD-ROM | disk | FTP | other *** search
/ Master Visual C++ 1.5 / MASTERVC15.ISO / vcprog / original / ch17 / whereami / wherevw.h < prev   
Encoding:
C/C++ Source or Header  |  1994-01-24  |  921 b   |  43 lines

  1. // wherevw.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CWhereamiView form view
  6.  
  7. #ifndef __AFXEXT_H__
  8. #include <afxext.h>
  9. #endif
  10.  
  11. class CWhereamiView : public CFormView
  12. {
  13.     DECLARE_DYNCREATE(CWhereamiView)
  14. protected:
  15.     CWhereamiView();            // protected constructor used by dynamic creation
  16.  
  17. // Form Data
  18. public:
  19.     //{{AFX_DATA(CWhereamiView)
  20.     enum { IDD = IDD_DIALOG1 };
  21.     CString    m_Horiz;
  22.     CString    m_Vert;
  23.     //}}AFX_DATA
  24.  
  25. // Attributes
  26. public:
  27.  
  28. // Operations
  29. public:
  30.  
  31. // Implementation
  32. protected:
  33.     virtual ~CWhereamiView();
  34.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  35.     // Generated message map functions
  36.     //{{AFX_MSG(CWhereamiView)
  37.     afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  38.     //}}AFX_MSG
  39.     DECLARE_MESSAGE_MAP()
  40. };
  41.  
  42. /////////////////////////////////////////////////////////////////////////////
  43.