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