1234567891011121314151617181920 |
- #ifndef __RULEEDIT_HEADER__
- #define __RULEEDIT_HEADER__
- #pragma once
- #include "afxwin.h"
- class CRuleEdit :public CEdit
- {
- public:
- CRuleEdit(void);
- ~CRuleEdit(void);
- double GetValue();
- void SetValue (double val);
- DECLARE_MESSAGE_MAP()
- afx_msg void OnChar(UINT nChar, UINT nRepCnt, UINT nFlags);
- };
- #endif
|