blob: 9a74ece734b5b532c388cae2ffadf693b46e0cae (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
/*
File: CoreFoundation.h
Contains: CoreFoundation master header
Version: QuickTime 7.3
Copyright: (c) 2007 (c) 1999-2001 by Apple Computer, Inc., all rights reserved
Bugs?: For bug reports, consult the following page on
the World Wide Web:
http://developer.apple.com/bugreporter/
*/
#ifndef __COREFOUNDATION__
#define __COREFOUNDATION__
#ifndef __CFBASE__
#include <CFBase.h>
#endif
#ifndef __CFARRAY__
#include <CFArray.h>
#endif
#ifndef __CFBAG__
#include <CFBag.h>
#endif
#ifndef __CFBUNDLE__
#include <CFBundle.h>
#endif
#ifndef __CFCHARACTERSET__
#include <CFCharacterSet.h>
#endif
#ifndef __CFDATA__
#include <CFData.h>
#endif
#ifndef __CFDATE__
#include <CFDate.h>
#endif
#ifndef __CFDICTIONARY__
#include <CFDictionary.h>
#endif
#ifndef __CFNUMBER__
#include <CFNumber.h>
#endif
#ifndef __CFPLUGIN__
#include <CFPlugIn.h>
#endif
#ifndef __CFPREFERENCES__
#include <CFPreferences.h>
#endif
#ifndef __CFPROPERTYLIST__
#include <CFPropertyList.h>
#endif
#ifndef __CFSET__
#include <CFSet.h>
#endif
#ifndef __CFSTRING__
#include <CFString.h>
#endif
#ifndef __CFSTRINGENCODINGEXT__
#include <CFStringEncodingExt.h>
#endif
#ifndef __CFTIMEZONE__
#include <CFTimeZone.h>
#endif
#ifndef __CFTREE__
#include <CFTree.h>
#endif
#ifndef __CFURL__
#include <CFURL.h>
#endif
#ifndef __CFURLACCESS__
#include <CFURLAccess.h>
#endif
#ifndef __CFUUID__
#include <CFUUID.h>
#endif
#ifndef __CFXMLNODE__
#include <CFXMLNode.h>
#endif
#ifndef __CFXMLPARSER__
#include <CFXMLParser.h>
#endif
#endif /* __COREFOUNDATION__ */
|