diff dwt/internal/cocoa/NSPropertyListFormat.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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/dwt/internal/cocoa/NSPropertyListFormat.d	Sat Aug 09 17:00:02 2008 +0200
@@ -0,0 +1,20 @@
+/**
+ * Copyright: Copyright (c) 2008 Jacob Carlborg. All rights reserved.
+ * Authors: Jacob Carlborg
+ * Version: Initial created: Jul 28, 2008
+ * License: $(LINK2 http://opensource.org/licenses/bsd-license.php, BSD Style)
+ * 
+ */
+module dwt.internal.cocoa.NSPropertyListFormat;
+
+import dwt.internal.cocoa.CFPropertyList;
+
+enum NSPropertyListFormat {
+    NSPropertyListOpenStepFormat = kCFPropertyListOpenStepFormat,
+    NSPropertyListXMLFormat_v1_0 = kCFPropertyListXMLFormat_v1_0,
+    NSPropertyListBinaryFormat_v1_0 = kCFPropertyListBinaryFormat_v1_0
+}
+
+alias NSPropertyListFormat.NSPropertyListOpenStepFormat NSPropertyListOpenStepFormat;
+alias NSPropertyListFormat.NSPropertyListXMLFormat_v1_0 NSPropertyListXMLFormat_v1_0;
+alias NSPropertyListFormat.NSPropertyListBinaryFormat_v1_0 NSPropertyListBinaryFormat_v1_0;
\ No newline at end of file