FloodFill.cpp
Upload User: popouu88
Upload Date: 2013-02-11
Package Size: 2894k
Code Size: 1k
Category:

VOIP program

Development Platform:

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. }