123456789101112131415161718192021222324252627 |
- // MySplitterWnd.h: interface for the MySplitterWnd class.
- //
- //////////////////////////////////////////////////////////////////////
- class MySplitterWnd : public CSplitterWnd
- {
- public:
- MySplitterWnd();
- virtual ~MySplitterWnd();
- // Generated message map functions
- protected:
- DECLARE_DYNCREATE(MySplitterWnd)
- //{{AFX_MSG(CMainFrame)
- afx_msg void OnMouseMove(UINT nFlags, CPoint point);
- afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
|