comparison dwt/internal/cocoa/SWTApplicationDelegate.d @ 0:380af2bdd8e5

Upload of whole dwt tree
author Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
date Sat, 09 Aug 2008 17:00:02 +0200
parents
children a329f9c3d66d
comparison
equal deleted inserted replaced
-1:000000000000 0:380af2bdd8e5
1 /*******************************************************************************
2 * Port to the D Programming language:
3 * Jacob Carlborg <jacob.carlborg@gmail.com>
4 *******************************************************************************/
5 module dwt.internal.cocoa.SWTApplicationDelegate;
6
7 import dwt.dwthelper.utils;
8 import dwt.internal.cocoa.NSObject;
9
10 public class DWTApplicationDelegate : NSObject {
11 public this () {
12 super(0);
13 }
14
15 public this (int id) {
16 super(id);
17 }
18 }