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.
32 lines
784 B
C++
32 lines
784 B
C++
// AlarmSheet.h: interface for the CAlarmSheet class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(AFX_ALARMSHEET_H__26C79F45_BCAB_11D7_8997_000629A6E157__INCLUDED_)
|
|
#define AFX_ALARMSHEET_H__26C79F45_BCAB_11D7_8997_000629A6E157__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
#include "MainSheet.h"
|
|
|
|
#ifdef BUILD_GUIDLL
|
|
#define DLLCLASS __declspec(dllexport)
|
|
#else
|
|
#define DLLCLASS __declspec(dllimport)
|
|
#endif
|
|
|
|
class DLLCLASS CAlarmSheet : public CMainSheet
|
|
{
|
|
public:
|
|
BOOL CheckSecurity(void);
|
|
CAlarmSheet(LPCTSTR pszCaption);
|
|
virtual ~CAlarmSheet();
|
|
|
|
private:
|
|
CAlarmPage alarmPage;
|
|
};
|
|
|
|
#endif // !defined(AFX_ALARMSHEET_H__26C79F45_BCAB_11D7_8997_000629A6E157__INCLUDED_)
|