You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
692 B
C++
27 lines
692 B
C++
// HelpSheet.h: interface for the CHelpSheet class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(AFX_HELPSHEET_H__5F1EACC1_D118_11D7_89AA_000629A6E157__INCLUDED_)
|
|
#define AFX_HELPSHEET_H__5F1EACC1_D118_11D7_89AA_000629A6E157__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
#include "MainSheet.h"
|
|
#include "HelpAboutPage.h"
|
|
|
|
class CHelpSheet : public CMainSheet
|
|
{
|
|
public:
|
|
BOOL CheckSecurity(void);
|
|
CHelpSheet(LPCTSTR pszCaption);
|
|
virtual ~CHelpSheet();
|
|
|
|
private:
|
|
CHelpAboutPage m_helpAboutPage;
|
|
};
|
|
|
|
#endif // !defined(AFX_HELPSHEET_H__5F1EACC1_D118_11D7_89AA_000629A6E157__INCLUDED_)
|