blob: 6be9d18894ec4b4b4c77ef161a445a9c6a16df44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#pragma once
#include "common.h"
class DbgPeopleView : public CFrameWnd {
DECLARE_DYNCREATE(DbgPeopleView)
DECLARE_MESSAGE_MAP()
public:
DbgPeopleView();
~DbgPeopleView();
void SetPeople(T2PeopleArrayList *inList);
protected:
afx_msg BOOL OnEraseBkgnd(CDC* pDC);
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
afx_msg void OnTimer(UINT nIDEvent);
afx_msg void OnDestroy();
T2PeopleArrayList *mPeopleArrayList;
};
|