comparison dstep/foundation/NSLocale_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.NSLocale_bindings;
2
3 import dstep.foundation.NSArray;
4 import dstep.foundation.NSDictionary;
5 import dstep.foundation.NSObject;
6 import dstep.foundation.NSString;
7 import dstep.objc.bridge.Bridge;
8 import dstep.objc.objc : id;
9
10
11 extern (C)
12 {
13 extern
14 {
15 package const id NSCurrentLocaleDidChangeNotification;
16 package const id NSLocaleIdentifier;
17 package const id NSLocaleLanguageCode;
18 package const id NSLocaleCountryCode;
19 package const id NSLocaleScriptCode;
20 package const id NSLocaleVariantCode;
21 package const id NSLocaleExemplarCharacterSet;
22 package const id NSLocaleCalendar;
23 package const id NSLocaleCollationIdentifier;
24 package const id NSLocaleUsesMetricSystem;
25 package const id NSLocaleMeasurementSystem;
26 package const id NSLocaleDecimalSeparator;
27 package const id NSLocaleGroupingSeparator;
28 package const id NSLocaleCurrencySymbol;
29 package const id NSLocaleCurrencyCode;
30 package const id NSGregorianCalendar;
31 package const id NSBuddhistCalendar;
32 package const id NSChineseCalendar;
33 package const id NSHebrewCalendar;
34 package const id NSIslamicCalendar;
35 package const id NSIslamicCivilCalendar;
36 package const id NSJapaneseCalendar;
37 }
38 }
39