void COutputView::OnDraw(CDC* pDC)
{
	...
	// TODO: 여기에 원시 데이터에 대한 그리기 코드를 추가합니다.
	pDC->MoveTo(100, 100);
	pDC->LineTo(200, 200);
}

Untitled