CDC2.cpp
资源名称:高级五子棋.rar [点击查看]
上传用户:sjsmail
上传日期:2009-08-28
资源大小:260k
文件大小:1k
源码类别:
棋牌游戏
开发平台:
Visual C++
- // CDC2.cpp: implementation of the CDC2 class.
- //
- //////////////////////////////////////////////////////////////////////
- #include "stdafx.h"
- #include "7.h"
- #ifdef _DEBUG
- #undef THIS_FILE
- static char THIS_FILE[]=__FILE__;
- #define new DEBUG_NEW
- #endif
- #include "CDC2.h"
- //////////////////////////////////////////////////////////////////////
- // Construction/Destruction
- //////////////////////////////////////////////////////////////////////
- CDC2::CDC2()
- {this->msize.cx =0 ;
- this->msize.cy =0 ;
- }
- CDC2::~CDC2()
- {
- }
- CSize CDC2::GetSize()
- {
- return (this->msize);
- }
- void CDC2::SetSize(CSize size)
- { this->msize.cx =size.cx ;
- this->msize.cy =size.cy;
- }