mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
472 B
39 lines
472 B
#ifndef WELCOME_PAGE_HPP_INCLUDED
|
|
#define WELCOME_PAGE_HPP_INCLUDED
|
|
|
|
|
|
|
|
class WelcomePage : public WizardPage
|
|
{
|
|
|
|
public:
|
|
|
|
WelcomePage();
|
|
|
|
protected:
|
|
|
|
virtual ~WelcomePage();
|
|
|
|
|
|
// WizardPage overrides
|
|
|
|
virtual
|
|
void
|
|
OnInit();
|
|
|
|
virtual
|
|
bool
|
|
OnSetActive();
|
|
|
|
|
|
private:
|
|
|
|
// not defined: no copying allowed
|
|
WelcomePage(const WelcomePage&);
|
|
const WelcomePage& operator=(const WelcomePage&);
|
|
};
|
|
|
|
|
|
|
|
#endif // WELCOME_PAGE_HPP_INCLUDED
|
|
|