// UDPServView.h : interface of the CUDPView class
//
/////////////////////////////////////////////////////////////////////////////

class CUDPView : public CEditView
{
protected: // create from serialization only
	CUDPView();
	DECLARE_DYNCREATE(CUDPView)

// Attributes
public:
	void MessageOut(LPCTSTR lpszMessage);
	CUDPDoc* GetDocument();

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CUDPView)
	public:
	virtual void OnDraw(CDC* pDC);  // overridden to draw this view
	virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
	protected:
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~CUDPView();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:

// Generated message map functions
protected:
	//{{AFX_MSG(CUDPView)
		// NOTE - the ClassWizard will add and remove member functions here.
		//    DO NOT EDIT what you see in these blocks of generated code !
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

#ifndef _DEBUG  // debug version in UDPServView.cpp
inline CUDPDoc* CUDPView::GetDocument()
   { return (CUDPDoc*)m_pDocument; }
#endif

/////////////////////////////////////////////////////////////////////////////
