comparison dwt/internal/cocoa/NSAttributeType.d @ 0:380af2bdd8e5

Upload of whole dwt tree
author Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
date Sat, 09 Aug 2008 17:00:02 +0200
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:380af2bdd8e5
1 /**
2 * Copyright: Copyright (c) 2008 Jacob Carlborg. All rights reserved.
3 * Authors: Jacob Carlborg
4 * Version: Initial created: Aug 3, 2008
5 * License: $(LINK2 http://opensource.org/licenses/bsd-license.php, BSD Style)
6 *
7 */
8 module dwt.internal.cocoa.NSAttributeType;
9
10 enum NSAttributeType {
11 NSUndefinedAttributeType = 0,
12 NSInteger16AttributeType = 100,
13 NSInteger32AttributeType = 200,
14 NSInteger64AttributeType = 300,
15 NSDecimalAttributeType = 400,
16 NSDoubleAttributeType = 500,
17 NSFloatAttributeType = 600,
18 NSStringAttributeType = 700,
19 NSBooleanAttributeType = 800,
20 NSDateAttributeType = 900,
21 NSBinaryDataAttributeType = 1000,
22 NSTransformableAttributeType = 1800
23 }
24
25 alias NSAttributeType.NSUndefinedAttributeType NSUndefinedAttributeType;
26 alias NSAttributeType.NSInteger16AttributeType NSInteger16AttributeType;
27 alias NSAttributeType.NSInteger32AttributeType NSInteger32AttributeType;
28 alias NSAttributeType.NSInteger64AttributeType NSInteger64AttributeType;
29 alias NSAttributeType.NSDecimalAttributeType NSDecimalAttributeType;
30 alias NSAttributeType.NSDoubleAttributeType NSDoubleAttributeType;
31 alias NSAttributeType.NSFloatAttributeType NSFloatAttributeType;
32 alias NSAttributeType.NSStringAttributeType NSStringAttributeType;
33 alias NSAttributeType.NSBooleanAttributeType NSBooleanAttributeType;
34 alias NSAttributeType.NSDateAttributeType NSDateAttributeType;
35 alias NSAttributeType.NSBinaryDataAttributeType NSBinaryDataAttributeType;
36 alias NSAttributeType.NSTransformableAttributeType NSTransformableAttributeType;