comparison dstep/foundation/NSKeyValueCoding_bindings.d @ 14:89f3c3ef1fd2

Added the Foundation framework
author Jacob Carlborg <doob@me.com>
date Mon, 03 Aug 2009 15:23:15 +0200
parents
children 19885b43130e
comparison
equal deleted inserted replaced
13:4f583f7e242e 14:89f3c3ef1fd2
1 module dstep.foundation.NSKeyValueCoding_bindings;
2
3 import dstep.foundation.NSArray;
4 import dstep.foundation.NSDictionary;
5 import dstep.foundation.NSError;
6 import dstep.foundation.NSSet;
7 import dstep.foundation.NSString;
8 import dstep.objc.bridge.Bridge;
9 import dstep.objc.objc : id;
10
11
12 extern (C)
13 {
14 extern
15 {
16 package const id NSUndefinedKeyException;
17 package const id NSAverageKeyValueOperator;
18 package const id NSCountKeyValueOperator;
19 package const id NSDistinctUnionOfArraysKeyValueOperator;
20 package const id NSDistinctUnionOfObjectsKeyValueOperator;
21 package const id NSDistinctUnionOfSetsKeyValueOperator;
22 package const id NSMaximumKeyValueOperator;
23 package const id NSMinimumKeyValueOperator;
24 package const id NSSumKeyValueOperator;
25 package const id NSUnionOfArraysKeyValueOperator;
26 package const id NSUnionOfObjectsKeyValueOperator;
27 package const id NSUnionOfSetsKeyValueOperator;
28 }
29 }
30