1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #if !defined(AFX_INPUTPRICE_H__44637AA2_C5A7_43B3_A016_7CF201F1BE69__INCLUDED_)
- #define AFX_INPUTPRICE_H__44637AA2_C5A7_43B3_A016_7CF201F1BE69__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- // InputPrice.h : header file
- //
- /////////////////////////////////////////////////////////////////////////////
- // InputPrice dialog
- class InputPrice : public CDialog
- {
- // Construction
- public:
- InputPrice(CWnd* pParent = NULL); // standard constructor
- // Dialog Data
- //{{AFX_DATA(InputPrice)
- enum { IDD = IDD_DLGInputPrice };
- CNumEdit m_editnum;
- CString m_price;
- //}}AFX_DATA
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(InputPrice)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- // Generated message map functions
- //{{AFX_MSG(InputPrice)
- virtual void OnOK();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_INPUTPRICE_H__44637AA2_C5A7_43B3_A016_7CF201F1BE69__INCLUDED_)
|