source: dev/trunk/ab5.0/abdev/abdev/include/WindowCollection.h@ 681

Last change on this file since 681 was 629, checked in by dai_9181, 16 years ago

MDIINFO構造体をリファクタリング。

File size: 316 bytes
Line 
1#pragma once
2
3namespace ActiveBasic{ namespace IDE{
4
5
6class WindowCollection
7{
8 HWND hMdiClientWnd;
9 WindowComponents::BaseWindowPtrs windows;
10public:
11
12 WindowCollection()
13 : hMdiClientWnd( NULL )
14 {
15 }
16 WindowCollection( HWND hMdiClientWnd )
17 : hMdiClientWnd( hMdiClientWnd )
18 {
19 }
20};
21
22
23}}
Note: See TracBrowser for help on using the repository browser.