DragonNest/Server/ServiceManagerEx/ServiceManagerExView.h
2024-12-20 16:56:44 +08:00

49 lines
2.2 KiB
C++
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 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