comparison dstep/foundation/NSPropertyList.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
31 NSPropertyListBinaryFormat_v1_0 = kCFPropertyListBinaryFormat_v1_0 31 NSPropertyListBinaryFormat_v1_0 = kCFPropertyListBinaryFormat_v1_0
32 } 32 }
33 33
34 class NSPropertyListSerialization : NSObject 34 class NSPropertyListSerialization : NSObject
35 { 35 {
36 mixin (ObjcWrap); 36 mixin ObjcWrap;
37
38 this (id object)
39 {
40 super(object);
41 }
37 42
38 this () 43 this ()
39 { 44 {
40 super(typeof(this).alloc.init.objcObject); 45 super(typeof(this).alloc.init.objcObject);
41 } 46 }