root/trunk/gtk/dfl/base.d
| Revision 8, 373 bytes (checked in by Chris Miller, 5 years ago) |
|---|
| Line | |
|---|---|
| 1 | // Copyright (C) 2007 Christopher E. Miller |
| 2 | // See the included license.txt for license details. |
| 3 | |
| 4 | |
| 5 | /// |
| 6 | module dfl.base; |
| 7 | |
| 8 | import dfl.internal.gtk; |
| 9 | |
| 10 | |
| 11 | alias GtkWidget* HWindow; |
| 12 | |
| 13 | |
| 14 | /// |
| 15 | interface IWindow // docmain |
| 16 | { |
| 17 | /// |
| 18 | HWindow handle(); // getter |
| 19 | } |
| 20 | |
| 21 | |
| 22 | /// |
| 23 | class DflException: Exception // docmain |
| 24 | { |
| 25 | /// |
| 26 | this(char[] msg) |
| 27 | { |
| 28 | super(msg); |
| 29 | } |
| 30 | } |
Note: See TracBrowser for help on using the browser.
