summaryrefslogtreecommitdiff
path: root/src/DbgPeopleView.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/DbgPeopleView.h')
-rw-r--r--src/DbgPeopleView.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/DbgPeopleView.h b/src/DbgPeopleView.h
index 6be9d18..2a69527 100644
--- a/src/DbgPeopleView.h
+++ b/src/DbgPeopleView.h
@@ -3,18 +3,23 @@
class DbgPeopleView : public CFrameWnd {
DECLARE_DYNCREATE(DbgPeopleView)
- DECLARE_MESSAGE_MAP()
public:
DbgPeopleView();
~DbgPeopleView();
void SetPeople(T2PeopleArrayList *inList);
+ T2PeopleArrayList *mPeopleArrayList;
+
+ //{{AFX_VIRTUAL(DbgPeopleView)
+ //}}AFX_VIRTUAL
+
protected:
+ //{{AFX_MSG(DbgPeopleView)
afx_msg BOOL OnEraseBkgnd(CDC* pDC);
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
afx_msg void OnTimer(UINT nIDEvent);
afx_msg void OnDestroy();
-
- T2PeopleArrayList *mPeopleArrayList;
+ //}}AFX_MSG
+ DECLARE_MESSAGE_MAP()
};