// RunPage.h : header file // ///////////////////////////////////////////////////////////////////////////// // RunPage dialog #ifndef _RUNPAGE_H #define _RUNPAGE_H class RunPage : public CPropertyPage { DECLARE_DYNCREATE(RunPage) // Construction public: RunPage(); ~RunPage(); // Dialog Data //{{AFX_DATA(RunPage) enum { IDD = IDD_RUN_PAGE }; int m_loops; int m_repeat; CString m_file_name; //}}AFX_DATA // Overrides // ClassWizard generate virtual function overrides //{{AFX_VIRTUAL(RunPage) protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support //}}AFX_VIRTUAL // Implementation protected: // Generated message map functions //{{AFX_MSG(RunPage) afx_msg void OnRpRun(); //}}AFX_MSG DECLARE_MESSAGE_MAP() }; #endif _RUNPAGE_H