crtanjeoop/crtanjeOOP/crtanjeOOP/lndrawer.cpp

12 lines
No EOL
253 B
C++
Executable file

#include "stdafx.h"
using namespace Win;
void CLineDrawer::DrawLine(HWND hWnd) const
{
HDC hdc = GetDC(hWnd);
SelectObject(hdc, m_hPen);
::MoveToEx(hdc, m_begin.x, m_begin.y, 0);
::LineTo(hdc, m_end.x, m_end.y);
DeleteObject(m_hPen);
}