QuakeGod
2022-05-10 65f7136c6dfebde14a07c89c4366fb8bed2fe37f
提交 | 用户 | age
0ed438 1 
Q 2 #pragma once
3
4 /////////////////////////////////////////////////////////////////////////////
5 // CViewTree 窗口
6
7 class CViewTree : public CTreeCtrl
8 {
9 // 构造
10 public:
11     CViewTree() noexcept;
12
13 // 重写
14 protected:
15     virtual BOOL OnNotify(WPARAM wParam, LPARAM lParam, LRESULT* pResult);
16
17 // 实现
18 public:
19     virtual ~CViewTree();
20
21 protected:
22     DECLARE_MESSAGE_MAP()
23 };