comparison dstep/coredata/NSFetchedPropertyDescription.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
11 import dstep.objc.bridge.Bridge; 11 import dstep.objc.bridge.Bridge;
12 import dstep.objc.objc; 12 import dstep.objc.objc;
13 13
14 class NSFetchedPropertyDescription : NSPropertyDescription 14 class NSFetchedPropertyDescription : NSPropertyDescription
15 { 15 {
16 mixin (ObjcWrap); 16 mixin ObjcWrap;
17
18 this (id object)
19 {
20 super(object);
21 }
17 22
18 NSFetchRequest fetchRequest () 23 NSFetchRequest fetchRequest ()
19 { 24 {
20 return invokeObjcSelf!(NSFetchRequest, "fetchRequest"); 25 return invokeObjcSelf!(NSFetchRequest, "fetchRequest");
21 } 26 }