]> git.saurik.com Git - apple/cf.git/blob - Base.subproj/CoreFoundation.h
CF-368.18.tar.gz
[apple/cf.git] / Base.subproj / CoreFoundation.h
1 /*
2 * Copyright (c) 2005 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
11 * file.
12 *
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
20 *
21 * @APPLE_LICENSE_HEADER_END@
22 */
23 /* CoreFoundation.h
24 Copyright (c) 1998-2005, Apple, Inc. All rights reserved.
25 */
26
27 #if !defined(__COREFOUNDATION_COREFOUNDATION__)
28 #define __COREFOUNDATION_COREFOUNDATION__ 1
29 #define __COREFOUNDATION__ 1
30
31 #include <sys/types.h>
32 #include <stdarg.h>
33 #include <assert.h>
34 #include <ctype.h>
35 #include <errno.h>
36 #include <float.h>
37 #include <limits.h>
38 #include <locale.h>
39 #include <math.h>
40 #include <setjmp.h>
41 #include <signal.h>
42 #include <stddef.h>
43 #include <stdio.h>
44 #include <stdlib.h>
45 #include <string.h>
46 #include <time.h>
47
48 #if defined(__STDC_VERSION__) && (199901L <= __STDC_VERSION__)
49
50 #include <inttypes.h>
51 #include <stdbool.h>
52 #include <stdint.h>
53
54 #endif
55
56 #include <CoreFoundation/CFBase.h>
57 #include <CoreFoundation/CFArray.h>
58 #include <CoreFoundation/CFBag.h>
59 #include <CoreFoundation/CFCharacterSet.h>
60 #include <CoreFoundation/CFData.h>
61 #include <CoreFoundation/CFDate.h>
62 #include <CoreFoundation/CFDictionary.h>
63 #include <CoreFoundation/CFNumber.h>
64 #include <CoreFoundation/CFPropertyList.h>
65 #include <CoreFoundation/CFSet.h>
66 #include <CoreFoundation/CFString.h>
67 #include <CoreFoundation/CFStringEncodingExt.h>
68 #include <CoreFoundation/CFTimeZone.h>
69 #include <CoreFoundation/CFTree.h>
70 #include <CoreFoundation/CFURL.h>
71 #include <CoreFoundation/CFXMLNode.h>
72 #include <CoreFoundation/CFXMLParser.h>
73
74 #if defined(__MACH__) || defined(__WIN32__)
75 #include <CoreFoundation/CFMachPort.h>
76 #include <CoreFoundation/CFMessagePort.h>
77 #include <CoreFoundation/CFRunLoop.h>
78 #include <CoreFoundation/CFSocket.h>
79 #endif
80
81 #include <CoreFoundation/CFBinaryHeap.h>
82 #include <CoreFoundation/CFBitVector.h>
83 #include <CoreFoundation/CFBundle.h>
84 #include <CoreFoundation/CFByteOrder.h>
85 #include <CoreFoundation/CFPlugIn.h>
86 #include <CoreFoundation/CFPreferences.h>
87 #include <CoreFoundation/CFURLAccess.h>
88 #include <CoreFoundation/CFUUID.h>
89
90 #include <CoreFoundation/CFLocale.h>
91
92 #include <CoreFoundation/CFStream.h>
93
94 #if defined(__MACH__)
95
96
97 #include <CoreFoundation/CFUserNotification.h>
98
99
100 #endif // __MACH__
101
102
103 #endif /* ! __COREFOUNDATION_COREFOUNDATION__ */
104