49 lines
2.2 KiB
C++
49 lines
2.2 KiB
C++
// ServiceManagerExView.h : CServiceManagerExView 클래스의 인터페이스
|
||
//
|
||
#pragma once
|
||
|
||
class CServiceManagerExView : public CView
|
||
{
|
||
protected: // serialization에서만 만들어집니다.
|
||
CServiceManagerExView();
|
||
DECLARE_DYNCREATE(CServiceManagerExView)
|
||
|
||
// 특성입니다.
|
||
public:
|
||
CServiceManagerExDoc* GetDocument() const;
|
||
|
||
// 작업입니다.
|
||
public:
|
||
|
||
// 재정의입니다.
|
||
public:
|
||
virtual void OnDraw(CDC* pDC); // 이 뷰를 그리기 위해 재정의되었습니다.
|
||
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
|
||
protected:
|
||
virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
|
||
virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
|
||
virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
|
||
|
||
// 구현입니다.
|
||
public:
|
||
virtual ~CServiceManagerExView();
|
||
#ifdef _DEBUG
|
||
virtual void AssertValid() const;
|
||
virtual void Dump(CDumpContext& dc) const;
|
||
#endif
|
||
|
||
public:
|
||
virtual void OnInitialUpdate();
|
||
|
||
protected:
|
||
|
||
// 생성된 메시지 맵 함수
|
||
protected:
|
||
DECLARE_MESSAGE_MAP()
|
||
};
|
||
|
||
#ifndef _DEBUG // ServiceManagerExView.cpp의 디버그 버전
|
||
inline CServiceManagerExDoc* CServiceManagerExView::GetDocument() const
|
||
{ return reinterpret_cast<CServiceManagerExDoc*>(m_pDocument); }
|
||
#endif
|
||
|