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
RevLine 
[489]1#pragma once
2
3namespace ActiveBasic{ namespace IDE{
4
5
6class WindowCollection
7{
[629]8 HWND hMdiClientWnd;
[489]9 WindowComponents::BaseWindowPtrs windows;
10public:
11
12 WindowCollection()
[629]13 : hMdiClientWnd( NULL )
[489]14 {
15 }
[629]16 WindowCollection( HWND hMdiClientWnd )
17 : hMdiClientWnd( hMdiClientWnd )
[489]18 {
19 }
20};
21
22
23}}
Note: See TracBrowser for help on using the repository browser.