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

  1. #if !defined(AFX_COMMANDSTRINGDLG_H__4431AA23_482A_11D1_B4AC_00A024805738__INCLUDED_)
  2. #define AFX_COMMANDSTRINGDLG_H__4431AA23_482A_11D1_B4AC_00A024805738__INCLUDED_
  3.  
  4. #if _MSC_VER >= 1000
  5. #pragma once
  6. #endif // _MSC_VER >= 1000
  7. // CommandStringDlg.h : header file
  8. //
  9.  
  10. #include "model.h"
  11.  
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CCommandStringDlg dialog
  15.  
  16. class CCommandStringDlg : public CDialog
  17. {
  18. // Construction
  19. public:
  20.     CCommandStringDlg(CWnd* pParent = NULL);   // standard constructor
  21.  
  22. // Dialog Data
  23.     //{{AFX_DATA(CCommandStringDlg)
  24.     enum { IDD = IDD_COMMANDSTRINGEDIT };
  25.     CEdit    m_CommandString;
  26.     //}}AFX_DATA
  27.  
  28.  
  29.     // Set this before running the dialog.
  30.     Model *m_pModel;
  31.  
  32.  
  33. // Overrides
  34.     // ClassWizard generated virtual function overrides
  35.     //{{AFX_VIRTUAL(CCommandStringDlg)
  36.     protected:
  37.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  38.     //}}AFX_VIRTUAL
  39.  
  40. // Implementation
  41. protected:
  42.  
  43.     // Generated message map functions
  44.     //{{AFX_MSG(CCommandStringDlg)
  45.     virtual void OnOK();
  46.     virtual BOOL OnInitDialog();
  47.     //}}AFX_MSG
  48.     DECLARE_MESSAGE_MAP()
  49. };
  50.  
  51. //{{AFX_INSERT_LOCATION}}
  52. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  53.  
  54. #endif // !defined(AFX_COMMANDSTRINGDLG_H__4431AA23_482A_11D1_B4AC_00A024805738__INCLUDED_)
  55.