18 lines
368 B
C
Raw Normal View History

2001-01-01 00:00:00 +01:00
#ifndef __OPTIONPG_H__
#define __OPTIONPG_H__
// Base class for Options property pages.
class COptionsPage : public CPropertyPage
{
public:
COptionsPage(UINT nIDTemplate);
virtual BOOL OnSetActive();
// We can't use the CDialog::m_nIDHelp because the
// MFC property sheet implementation stores dialog
// template identifiers there.
UINT m_nHelpID;
};
#endif