comparison dstep/foundation/NSURLConnection.d @ 25:b9de51448c6b

Added an id constructor. Changed the string mixin to a template mixin. Added support for building as a dynamic library
author Jacob Carlborg <doob@me.com>
date Tue, 06 Apr 2010 11:37:27 +0200
parents 19885b43130e
children
comparison
equal deleted inserted replaced
24:ab33fc0c3fc1 25:b9de51448c6b
78 } 78 }
79 `; 79 `;
80 80
81 class NSURLConnection : NSObject 81 class NSURLConnection : NSObject
82 { 82 {
83 mixin (ObjcWrap); 83 mixin ObjcWrap;
84
85 this (id object)
86 {
87 super(object);
88 }
84 89
85 this () 90 this ()
86 { 91 {
87 super(typeof(this).alloc.init.objcObject); 92 super(typeof(this).alloc.init.objcObject);
88 } 93 }