00001 // DxPolygonView.cpp : 実装ファイル 00002 // 00003 00004 #include "..\stdafx.h" 00005 00006 #include "DxPolygonView.h" 00007 00008 00009 00010 // DxPolygonView 00011 00012 IMPLEMENT_DYNCREATE(DxPolygonView, CExView) 00013 00014 00015 DxPolygonView::DxPolygonView() 00016 { 00017 00018 } 00019 00020 00021 // 00022 DxPolygonView::~DxPolygonView() 00023 { 00024 } 00025 00026 00027 00028 BEGIN_MESSAGE_MAP(DxPolygonView, CDxBaseView) 00029 END_MESSAGE_MAP() 00030 00031 00032 00033 // DxPolygonView 描画 00034 00035 void DxPolygonView::OnDraw(CDC* pDC) 00036 { 00037 CDocument* pDoc = GetDocument(); 00038 // TODO: 描画コードをここに追加してください。 00039 } 00040 00041 00042 // DxPolygonView 診断 00043 00044 #ifdef _DEBUG 00045 void DxPolygonView::AssertValid() const 00046 { 00047 CDxBaseView::AssertValid(); 00048 } 00049 00050 00051 #ifndef _WIN32_WCE 00052 void DxPolygonView::Dump(CDumpContext& dc) const 00053 { 00054 CDxBaseView::Dump(dc); 00055 } 00056 #endif 00057 #endif //_DEBUG 00058 00059 00060 // DxPolygonView メッセージ ハンドラ