home *** CD-ROM | disk | FTP | other *** search
/ Xentax forum attachments archive / xentax.7z / 8090 / ModelEdit.7z / RotationDlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-03-08  |  1.1 KB  |  49 lines

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