42 lines
No EOL
696 B
C++
42 lines
No EOL
696 B
C++
// EtViewerDoc.h : CEtViewerDoc 클래스의 인터페이스
|
|
//
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
class CEtViewerDoc : public CDocument
|
|
{
|
|
protected: // serialization에서만 만들어집니다.
|
|
CEtViewerDoc();
|
|
DECLARE_DYNCREATE(CEtViewerDoc)
|
|
|
|
// 특성입니다.
|
|
public:
|
|
|
|
// 작업입니다.
|
|
public:
|
|
|
|
// 재정의입니다.
|
|
public:
|
|
virtual BOOL OnNewDocument();
|
|
virtual void Serialize(CArchive& ar);
|
|
|
|
// 구현입니다.
|
|
public:
|
|
virtual ~CEtViewerDoc();
|
|
#ifdef _DEBUG
|
|
virtual void AssertValid() const;
|
|
virtual void Dump(CDumpContext& dc) const;
|
|
#endif
|
|
|
|
protected:
|
|
|
|
// 생성된 메시지 맵 함수
|
|
protected:
|
|
DECLARE_MESSAGE_MAP()
|
|
afx_msg void OnFileOpen();
|
|
afx_msg void OnFileSave();
|
|
afx_msg void OnFileNew();
|
|
afx_msg void OnFileExportscene();
|
|
}; |