ObjFW
 All Classes Functions Variables
ObjFW.h
1 /*
2  * Copyright (c) 2008, 2009, 2010, 2011, 2012
3  * Jonathan Schleifer <js@webkeks.org>
4  *
5  * All rights reserved.
6  *
7  * This file is part of ObjFW. It may be distributed under the terms of the
8  * Q Public License 1.0, which can be found in the file LICENSE.QPL included in
9  * the packaging of this file.
10  *
11  * Alternatively, it may be distributed under the terms of the GNU General
12  * Public License, either version 2 or 3, which can be found in the file
13  * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
14  * file.
15  */
16 
17 #import "objfw-defs.h"
18 
19 #import "OFObject.h"
20 #import "OFBlock.h"
21 
22 #import "OFAutoreleasePool.h"
23 #import "OFString.h"
24 
25 #import "OFDataArray.h"
26 #import "OFArray.h"
27 
28 #import "OFList.h"
29 #import "OFSortedList.h"
30 
31 #import "OFDictionary.h"
32 
33 #import "OFSet.h"
34 #import "OFCountedSet.h"
35 
36 #import "OFEnumerator.h"
37 
38 #import "OFNull.h"
39 
40 #import "OFIntrospection.h"
41 
42 #import "OFNumber.h"
43 #import "OFDate.h"
44 #import "OFURL.h"
45 
46 #import "OFStream.h"
47 #import "OFFile.h"
48 #import "OFStreamSocket.h"
49 #import "OFTCPSocket.h"
50 #import "OFTLSSocket.h"
51 #import "OFProcess.h"
52 #import "OFStreamObserver.h"
53 
54 #import "OFHTTPRequest.h"
55 
56 #import "OFHash.h"
57 #import "OFMD5Hash.h"
58 #import "OFSHA1Hash.h"
59 
60 #import "OFXMLAttribute.h"
61 #import "OFXMLElement.h"
62 #import "OFXMLAttribute.h"
63 #import "OFXMLCharacters.h"
64 #import "OFXMLCDATA.h"
65 #import "OFXMLComment.h"
66 #import "OFXMLProcessingInstructions.h"
67 #import "OFXMLParser.h"
68 #import "OFXMLElementBuilder.h"
69 
70 #import "OFSerialization.h"
71 
72 #import "OFApplication.h"
73 #import "OFTimer.h"
74 #import "OFRunLoop.h"
75 
76 #import "OFAllocFailedException.h"
77 #import "OFException.h"
78 #import "OFAcceptFailedException.h"
79 #import "OFAddressTranslationFailedException.h"
80 #import "OFAlreadyConnectedException.h"
81 #import "OFBindFailedException.h"
82 #import "OFChangeDirectoryFailedException.h"
83 #import "OFChangeFileModeFailedException.h"
84 #import "OFChangeFileOwnerFailedException.h"
85 #ifdef OF_THREADS
86 # import "OFConditionBroadcastFailedException.h"
87 # import "OFConditionSignalFailedException.h"
88 # import "OFConditionStillWaitingException.h"
89 # import "OFConditionWaitFailedException.h"
90 #endif
91 #import "OFConnectionFailedException.h"
92 #import "OFCopyFileFailedException.h"
93 #import "OFCreateDirectoryFailedException.h"
94 #import "OFDeleteDirectoryFailedException.h"
95 #import "OFDeleteFileFailedException.h"
96 #import "OFEnumerationMutationException.h"
97 #import "OFHashAlreadyCalculatedException.h"
98 #import "OFHTTPRequestFailedException.h"
99 #import "OFInitializationFailedException.h"
100 #import "OFInvalidArgumentException.h"
101 #import "OFInvalidEncodingException.h"
102 #import "OFInvalidFormatException.h"
103 #import "OFInvalidJSONException.h"
104 #import "OFInvalidServerReplyException.h"
105 #import "OFLinkFailedException.h"
106 #import "OFListenFailedException.h"
107 #import "OFLockFailedException.h"
108 #import "OFMalformedXMLException.h"
109 #import "OFMemoryNotPartOfObjectException.h"
110 #import "OFNotConnectedException.h"
111 #import "OFNotImplementedException.h"
112 #import "OFOpenFileFailedException.h"
113 #import "OFOutOfMemoryException.h"
114 #import "OFOutOfRangeException.h"
115 #import "OFReadFailedException.h"
116 #import "OFReadOrWriteFailedException.h"
117 #import "OFRenameFileFailedException.h"
118 #import "OFSeekFailedException.h"
119 #import "OFSetOptionFailedException.h"
120 #import "OFStillLockedException.h"
121 #import "OFSymlinkFailedException.h"
122 #ifdef OF_THREADS
123 # import "OFThreadJoinFailedException.h"
124 # import "OFThreadStartFailedException.h"
125 # import "OFThreadStillRunningException.h"
126 #endif
127 #import "OFTruncatedDataException.h"
128 #import "OFUnboundNamespaceException.h"
129 #import "OFUnlockFailedException.h"
130 #import "OFUnsupportedProtocolException.h"
131 #import "OFWriteFailedException.h"
132 
133 #import "macros.h"
134 
135 #ifdef OF_PLUGINS
136 # import "OFPlugin.h"
137 #endif
138 
139 #ifdef OF_ATOMIC_OPS
140 # import "atomic.h"
141 #endif
142 
143 #import "OFLocking.h"
144 #ifdef OF_THREADS
145 # import "threading.h"
146 # import "OFThread.h"
147 # import "OFThreadPool.h"
148 # import "OFTLSKey.h"
149 # import "OFMutex.h"
150 # import "OFRecursiveMutex.h"
151 # import "OFCondition.h"
152 #endif
153 
154 #import "autorelease.h"
155 #import "asprintf.h"
156 #import "base64.h"
157 #import "of_asprintf.h"
158 #import "of_strptime.h"