NumEdit.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. #if !defined(AFX_NUMEDIT_H__ACD85206_F566_11D1_A2DA_00609761A58B__INCLUDED_)
  2. #define AFX_NUMEDIT_H__ACD85206_F566_11D1_A2DA_00609761A58B__INCLUDED_
  3. #if _MSC_VER >= 1000
  4. #pragma once
  5. #endif // _MSC_VER >= 1000
  6. // NumEdit.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CNumEdit window
  10. class CNumEdit : public CEdit
  11. {
  12. // Construction
  13. public:
  14. CNumEdit();
  15. // Attributes
  16. public:
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CNumEdit)
  22. //}}AFX_VIRTUAL
  23. // Implementation
  24. public:
  25. double GetValue();
  26. void SetValue (double val);
  27. virtual ~CNumEdit();
  28. // Generated message map functions
  29. protected:
  30. //{{AFX_MSG(CNumEdit)
  31. afx_msg void OnChar(UINT nChar, UINT nRepCnt, UINT nFlags);
  32. //}}AFX_MSG
  33. DECLARE_MESSAGE_MAP()
  34. };
  35. /////////////////////////////////////////////////////////////////////////////
  36. //{{AFX_INSERT_LOCATION}}
  37. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  38. #endif // !defined(AFX_NUMEDIT_H__ACD85206_F566_11D1_A2DA_00609761A58B__INCLUDED_)