2020-09-30 17:12:29 +02:00

18 lines
368 B
C++

#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