RuleEdit.h 313 B

1234567891011121314151617181920
  1. #ifndef __RULEEDIT_HEADER__
  2. #define __RULEEDIT_HEADER__
  3. #pragma once
  4. #include "afxwin.h"
  5. class CRuleEdit :public CEdit
  6. {
  7. public:
  8. CRuleEdit(void);
  9. ~CRuleEdit(void);
  10. double GetValue();
  11. void SetValue (double val);
  12. DECLARE_MESSAGE_MAP()
  13. afx_msg void OnChar(UINT nChar, UINT nRepCnt, UINT nFlags);
  14. };
  15. #endif