summaryrefslogtreecommitdiff
path: root/src/DbgPeopleView.h
blob: 2a69527a85589b565ebb5ba17cce61cd89b2942a (plain)
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
#pragma once
#include "common.h"

class DbgPeopleView : public CFrameWnd {
    DECLARE_DYNCREATE(DbgPeopleView)

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();
    //}}AFX_MSG
    DECLARE_MESSAGE_MAP()
};