-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathStimServerView.h
50 lines (38 loc) · 1.11 KB
/
StimServerView.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// StimServerView.h : interface of the CStimServerView class
//
#pragma once
class CStimServerView : public CView
{
protected: // create from serialization only
CStimServerView();
DECLARE_DYNCREATE(CStimServerView)
// Attributes
public:
CStimServerDoc* GetDocument() const;
// Operations
public:
// Overrides
public:
virtual void OnDraw(CDC* pDC); // overridden to draw this view
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
protected:
// Implementation
public:
virtual ~CStimServerView();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
// Generated message map functions
protected:
afx_msg void OnFilePrintPreview();
afx_msg void OnRButtonUp(UINT nFlags, CPoint point);
afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
DECLARE_MESSAGE_MAP()
// afx_msg LRESULT OnDraw2d(WPARAM wParam, LPARAM lParam);
};
#ifndef _DEBUG // debug version in StimServerView.cpp
inline CStimServerDoc* CStimServerView::GetDocument() const
{ return reinterpret_cast<CStimServerDoc*>(m_pDocument); }
#endif