Leaked source code of windows server 2003
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.
|
|
// Copyright (c) 2001 Microsoft Corporation
//
// File: NASAdminPage.h
//
// Synopsis: Declares the NASAdminPage that
// asks the user if they want to install
// the Network Attached Storage (NAS)
// admin tool
//
// History: 06/01/2001 JeffJon Created
#ifndef __CYS_NASADMINPAGE_H
#define __CYS_NASADMINPAGE_H
#include "CYSWizardPage.h"
class NASAdminPage : public CYSWizardPage { public: // Constructor
NASAdminPage();
// Destructor
virtual ~NASAdminPage();
// Dialog overrides
virtual bool OnSetActive();
protected:
// CYSWizardPage overrides
virtual int Validate();
private:
// not defined: no copying allowed
NASAdminPage(const NASAdminPage&); const NASAdminPage& operator=(const NASAdminPage&);
};
#endif // __CYS_NASADMINPAGE_H
|