#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; };