Line.cpp
资源名称:视频会议系统.rar [点击查看]
上传用户:popouu88
上传日期:2013-02-11
资源大小:2894k
文件大小:1k
源码类别:
IP电话/视频会议
开发平台:
Visual C++
- // Line.cpp: implementation of the CLine class.
- //
- //////////////////////////////////////////////////////////////////////
- #include "stdafx.h"
- #include "Line.h"
- #ifdef _DEBUG
- #undef THIS_FILE
- static char THIS_FILE[]=__FILE__;
- #define new DEBUG_NEW
- #endif
- //////////////////////////////////////////////////////////////////////
- // Construction/Destruction
- //////////////////////////////////////////////////////////////////////
- CLine::CLine( CDrawView * view ) : CDraw( view )
- {
- this->type = LINE;
- }
- CLine::~CLine()
- {
- }
- CDC * CLine::Draw( CDC * pDC )
- {
- pDC = CDraw::Draw( pDC );
- if( pDC )
- {
- pDC->MoveTo( this->start );
- pDC->LineTo( this->end );
- }
- return pDC;
- }