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

IP电话/视频会议

开发平台:

Visual C++

  1. // Line.cpp: implementation of the CLine class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "stdafx.h"
  5. #include "Line.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. CLine::CLine( CDrawView * view ) : CDraw( view )
  15. {
  16. this->type = LINE;
  17. }
  18. CLine::~CLine()
  19. {
  20. }
  21. CDC * CLine::Draw( CDC * pDC )
  22. {
  23. pDC = CDraw::Draw( pDC );
  24. if( pDC )
  25. {
  26. pDC->MoveTo( this->start );
  27. pDC->LineTo( this->end );
  28. }
  29. return pDC;
  30. }