123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- #ifndef __PageDummy_h__
- #define __PageDummy_h__
- #if _MSC_VER > 1000
- #pragma once
- #endif
- class CAllSrvUISheet;
- class CPageDummy : public CPropertyPage
- {
- public:
- DECLARE_DYNAMIC(CPageDummy)
- DECLARE_MESSAGE_MAP()
- public:
- CPageDummy();
- public:
- public:
-
-
- public:
- protected:
- virtual void DoDataExchange(CDataExchange* pDX);
-
- protected:
- CAllSrvUISheet* GetSheet()
- {
- return reinterpret_cast<CAllSrvUISheet*>(GetParent());
- }
- protected:
-
-
-
- protected:
-
- enum { IDD = IDD_PAGE_DUMMY };
-
- };
- #endif
|