source: trunk/ab5.0/ablib/src/Classes/System/Threading/AutoResetEvent.ab@ 560

Last change on this file since 560 was 560, checked in by dai, 16 years ago

#183への対応。コンストラクタ、デストラクタが直接呼び出された場合はエラーとして扱うようにした。
(64bit版は後ほどコミットします)

File size: 324 bytes
Line 
1' Classes/System/Threading/AutoResetEvent.ab
2
3NameSpace System
4NameSpace Threading
5
6Class AutoResetEvent
7 Inherits System.Threading.EventWaitHandle
8
9Public
10 Sub AutoResetEvent(initialState As Boolean)
11 EventWaitHandle(initialState,EventResetMode.AutoReset)
12 End Sub
13
14End Class
15
16End Namespace
17End Namespace
Note: See TracBrowser for help on using the repository browser.