QuakeGod
2024-01-16 6ff05a44b01c6ac6e33db2ec28dcf6e2a7c2abb0
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
26
#pragma once
#include "MyFormLog.h"
//#include "MyDialogLog.h"
 
// CMyPaneLog
 
class CMyPaneLog : public CDockablePane
{
    DECLARE_DYNAMIC(CMyPaneLog)
 
public:
    CMyPaneLog();
    virtual ~CMyPaneLog();
 
protected:
    CMyFormLog * m_pMyFormLog;
//    CMyDialogLog m_MyDialogLog;
    //    CEdit  MyLogEdit1;
    DECLARE_MESSAGE_MAP()
public:
    afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
    afx_msg void OnSize(UINT nType, int cx, int cy);
    afx_msg void OnDestroy();
};