00001 #pragma once
00002
00003 #include "ExClass.h"
00004
00005
00006
00007
00008 class DxPolygonDoc : public CExDocument
00009 {
00010 DECLARE_DYNCREATE(DxPolygonDoc)
00011
00012 public:
00013 DxPolygonDoc();
00014 virtual ~DxPolygonDoc();
00015 #ifndef _WIN32_WCE
00016 virtual void Serialize(CArchive& ar);
00017 #endif
00018 #ifdef _DEBUG
00019 virtual void AssertValid() const;
00020 #ifndef _WIN32_WCE
00021 virtual void Dump(CDumpContext& dc) const;
00022 #endif
00023 #endif
00024
00025 protected:
00026 virtual BOOL OnNewDocument();
00027
00028 DECLARE_MESSAGE_MAP()
00029 };
00030