CDC2.cpp
上传用户:sjsmail
上传日期:2009-08-28
资源大小:260k
文件大小:1k
源码类别:

棋牌游戏

开发平台:

Visual C++

  1. // CDC2.cpp: implementation of the CDC2 class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "stdafx.h"
  5. #include "7.h"
  6. #ifdef _DEBUG
  7. #undef THIS_FILE
  8. static char THIS_FILE[]=__FILE__;
  9. #define new DEBUG_NEW
  10. #endif
  11. #include "CDC2.h"
  12. //////////////////////////////////////////////////////////////////////
  13. // Construction/Destruction
  14. //////////////////////////////////////////////////////////////////////
  15. CDC2::CDC2()
  16. {this->msize.cx =0 ;
  17. this->msize.cy =0 ;
  18. }
  19. CDC2::~CDC2()
  20. {
  21. }
  22. CSize CDC2::GetSize()
  23. {
  24. return (this->msize); 
  25. }
  26. void CDC2::SetSize(CSize size)
  27. { this->msize.cx =size.cx ;
  28. this->msize.cy =size.cy;
  29. }