mirror of
https://github.com/leozide/leocad
synced 2025-01-18 22:26:44 +01:00
13 lines
349 B
C
13 lines
349 B
C
|
////////////////
|
||
|
// The following class was copied from BARTOOL.CPP in the MFC source.
|
||
|
// All I changed was SetCheck--PD.
|
||
|
//
|
||
|
class CFlatOrCoolBarCmdUI : public CCmdUI // class private to this file !
|
||
|
{
|
||
|
public: // re-implementations only
|
||
|
virtual void Enable(BOOL bOn);
|
||
|
virtual void SetCheck(int nCheck);
|
||
|
virtual void SetText(LPCTSTR lpszText);
|
||
|
};
|
||
|
|