comparison dstep/foundation/NSURLCredential.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
22 NSURLCredentialPersistencePermanent 22 NSURLCredentialPersistencePermanent
23 } 23 }
24 24
25 class NSURLCredential : NSObject, INSCopying 25 class NSURLCredential : NSObject, INSCopying
26 { 26 {
27 mixin (ObjcWrap); 27 mixin ObjcWrap;
28
29 this (id object)
30 {
31 super(object);
32 }
28 33
29 this () 34 this ()
30 { 35 {
31 super(typeof(this).alloc.init.objcObject); 36 super(typeof(this).alloc.init.objcObject);
32 } 37 }