comparison tango/tango/io/model/IListener.d @ 132:1700239cab2e trunk

[svn r136] MAJOR UNSTABLE UPDATE!!! Initial commit after moving to Tango instead of Phobos. Lots of bugfixes... This build is not suitable for most things.
author lindquist
date Fri, 11 Jan 2008 17:57:40 +0100
parents
children
comparison
equal deleted inserted replaced
131:5825d48b27d1 132:1700239cab2e
1 /*******************************************************************************
2
3 copyright: Copyright (c) 2004 Kris Bell. All rights reserved
4
5 license: BSD style: $(LICENSE)
6
7 version: Initial release: April 2004
8
9 author: Kris
10
11 *******************************************************************************/
12
13 module tango.io.model.IListener;
14
15
16 /******************************************************************************
17
18 ******************************************************************************/
19
20 interface IListener
21 {
22 /***********************************************************************
23
24 Stop listening; this may be delayed until after the next
25 valid read operation.
26
27 ***********************************************************************/
28
29 void cancel ();
30 }