FloodFill.cpp
上传用户:popouu88
上传日期:2013-02-11
资源大小:2894k
文件大小:1k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. // FloodFill.cpp: implementation of the CFloodFill class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "stdafx.h"
  5. #include "FloodFill.h"
  6. #ifdef _DEBUG
  7. #undef THIS_FILE
  8. static char THIS_FILE[]=__FILE__;
  9. #define new DEBUG_NEW
  10. #endif
  11. //////////////////////////////////////////////////////////////////////
  12. // Construction/Destruction
  13. //////////////////////////////////////////////////////////////////////
  14. CFloodFill::CFloodFill( CDrawView * view ) : CDraw( view )
  15. {
  16. }
  17. CFloodFill::~CFloodFill()
  18. {
  19. }
  20. CDC * CFloodFill::Draw( CDC * pDC )
  21. {
  22. return CDraw::Draw( pDC );
  23. }