summaryrefslogtreecommitdiff
path: root/src/DbgEventList.h
blob: d6ae2cbbc46a727e3261b4548b5820fbbe1bbede (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once
#include "common.h"

class DbgEventList : public CDialog {
    DECLARE_MESSAGE_MAP()

public:
    DbgEventList(CWnd *pParentWnd);
    virtual BOOL OnInitDialog();

protected:
    virtual void DoDataExchange(CDataExchange *pDX);
    void RefreshEvents();
    void AddEvents(LArray &array, const char *mode);
    afx_msg void OnEventStart();

    CListCtrl mList;
    T2TowerEvent *mTowerEvent;
};