mirror of
https://github.com/leozide/leocad
synced 2025-01-06 05:24:55 +01:00
13 lines
284 B
C
13 lines
284 B
C
|
#ifndef _DYNSPLIT_H_
|
||
|
#define _DYNSPLIT_H_
|
||
|
|
||
|
class CDynamicSplitterWnd : public CSplitterWndEx
|
||
|
{
|
||
|
public:
|
||
|
BOOL AttachWindow(CWnd* Wnd, int Row, int Col);
|
||
|
BOOL DetachWindow(int Row, int Col);
|
||
|
void GetViewRowCol(CWnd* Window, int* Row, int* Col);
|
||
|
};
|
||
|
|
||
|
#endif // _DYNSPLIT_H_
|