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