You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
631 B
C
32 lines
631 B
C
|
1 month ago
|
#pragma once
|
||
|
|
|
||
|
|
|
||
|
|
// CHowToContinueDlg dialog
|
||
|
|
|
||
|
|
class CHowToContinueDlg : public CDialog
|
||
|
|
{
|
||
|
|
DECLARE_DYNAMIC(CHowToContinueDlg)
|
||
|
|
|
||
|
|
public:
|
||
|
|
CHowToContinueDlg(CWnd* pParent = NULL); // standard constructor
|
||
|
|
virtual ~CHowToContinueDlg();
|
||
|
|
|
||
|
|
// Dialog Data
|
||
|
|
enum { IDD = IDD_DIALOGHowtocontinue };
|
||
|
|
|
||
|
|
protected:
|
||
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
||
|
|
|
||
|
|
DECLARE_MESSAGE_MAP()
|
||
|
|
public:
|
||
|
|
double precision;
|
||
|
|
double smooth;
|
||
|
|
int IsCancel;
|
||
|
|
afx_msg void OnBnClickedCancel2();
|
||
|
|
afx_msg void OnBnClickedButton4();
|
||
|
|
afx_msg void OnBnClickedCancel3();
|
||
|
|
afx_msg void OnBnClickedOk2();
|
||
|
|
protected:
|
||
|
|
virtual void OnOK();
|
||
|
|
};
|