View | Details | Raw Unified | Return to bug 273835 | Differences between
and this patch

Collapse All | Expand All

(-)b/devel/Makefile (+1 lines)
Lines 1662-1667 Link Here
1662
    SUBDIR += obby
1662
    SUBDIR += obby
1663
    SUBDIR += objconv
1663
    SUBDIR += objconv
1664
    SUBDIR += objecthash
1664
    SUBDIR += objecthash
1665
    SUBDIR += objfw
1665
    SUBDIR += ocaml-annexlib
1666
    SUBDIR += ocaml-annexlib
1666
    SUBDIR += ocaml-calendar
1667
    SUBDIR += ocaml-calendar
1667
    SUBDIR += ocaml-camljava
1668
    SUBDIR += ocaml-camljava
(-)b/devel/objfw/Makefile (+64 lines)
Added Link Here
1
PORTNAME=	objfw
2
DISTVERSION=	1.0.3
3
CATEGORIES=	devel lang
4
MASTER_SITES=	https://objfw.nil.im/downloads/
5
6
MAINTAINER=	js-freebsd@nil.im
7
COMMENT=	Portable, lightweight framework for the Objective-C language
8
WWW=		https://objfw.nil.im/
9
10
LICENSE=		QPL GPLv2 GPLv3
11
LICENSE_COMB=		dual
12
LICENSE_NAME_QPL=	Q Public License
13
LICENSE_FILE_QPL=	${WRKSRC}/LICENSE.QPL
14
LICENSE_PERMS_QPL=	dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
15
16
USE_LDCONFIG=	yes
17
GNU_CONFIGURE=	yes
18
19
TEST_TARGET=	check
20
21
OPTIONS_DEFINE=		DOCS
22
OPTIONS_SINGLE=		SSL
23
OPTIONS_SINGLE_SSL=	OPENSSL GNUTLS NOSSL
24
OPTIONS_DEFAULT=	OPENSSL
25
NOSSL_DESC=		no SSL/TLS support
26
27
DOCS_BUILD_DEPENDS=	doxygen:devel/doxygen
28
29
OPENSSL_CONFIGURE_ON=	--with-tls=openssl
30
OPENSSL_PLIST_SUB=	TLS=""
31
OPENSSL_CPPFLAGS=	-I${OPENSSLINC}
32
OPENSSL_LDFLAGS=	-L${OPENSSLLIB}
33
OPENSSL_USES=		ssl
34
35
GNUTLS_CONFIGURE_ON=	--with-tls=gnutls
36
GNUTLS_PLIST_SUB=	TLS=""
37
GNUTLS_LIB_DEPENDS=	libgnutls.so:security/gnutls
38
GNUTLS_USES=		pkgconfig
39
40
NOSSL_CONFIGURE_ON=	--without-tls
41
NOSSL_PLIST_SUB=	TLS="@comment "
42
43
do-build-DOCS-on:
44
	cd ${WRKSRC} && ${DO_MAKE_BUILD} docs
45
46
do-install-DOCS-on:
47
	${MKDIR} ${STAGEDIR}${DOCSDIR}
48
	(cd ${WRKSRC}/docs && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}/objfw)
49
50
post-install:
51
.for i in objfw-new ofarc ofdns ofhash ofhttp
52
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/$i
53
.endfor
54
.for i in libobjfw.so.1 libobjfwrt.so.1
55
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/$i
56
.endfor
57
58
post-install-OPENSSL-on:
59
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libobjfwtls.so.1
60
61
post-install-GNUTLS-on:
62
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libobjfwtls.so.1
63
64
.include <bsd.port.mk>
(-)b/devel/objfw/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1694727422
2
SHA256 (objfw-1.0.3.tar.gz) = 1c81d7d03578b2d9084fc5d8722d4eaa4bdc2f3f09ce41231e7ceab8212fae17
3
SIZE (objfw-1.0.3.tar.gz) = 787055
(-)b/devel/objfw/pkg-descr (+18 lines)
Added Link Here
1
ObjFW is a highly portable, lightweight, general purpose, open source
2
Objective-C framework with full Objective-C 2.0, blocks and ARC support,
3
providing not only basic classes like strings, arrays and dictionaries,
4
but also providing abstractions for OS-dependant functionality like
5
asynchronous sockets.
6
7
While a lot of the core API is similar to Foundation, it breaks with
8
Foundation's API on purpose in many places to embrace new features which
9
Foundation can't use completely due to its backwards compatibility. One
10
such example are exceptions, which are a first class citizen in ObjFW
11
and not merely to inform the programmer of his wrongdoings like in
12
Foundation.
13
14
ObjFW runs on a huge list of platforms and offers the same API on all of
15
them so that software written using ObjFW runs on all platforms
16
supported by ObjFW without #ifdef hells or the like. It does not only
17
run on almost any POSIX system that supports GCC >= 4, but it also works
18
on Windows and niche platforms like the PlayStation Portable.
(-)b/devel/objfw/pkg-plist (-1 / +1577 lines)
Added Link Here
0
- 
1
bin/objfw-compile
2
bin/objfw-config
3
bin/objfw-embed
4
bin/objfw-new
5
bin/ofarc
6
bin/ofdns
7
bin/ofhash
8
bin/ofhttp
9
include/ObjFW/OFAcceptSocketFailedException.h
10
include/ObjFW/OFAllocFailedException.h
11
include/ObjFW/OFAlreadyOpenException.h
12
include/ObjFW/OFApplication.h
13
include/ObjFW/OFArchiveEntry.h
14
include/ObjFW/OFArray.h
15
include/ObjFW/OFAtomic.h
16
include/ObjFW/OFBindIPSocketFailedException.h
17
include/ObjFW/OFBindSocketFailedException.h
18
include/ObjFW/OFBindUNIXSocketFailedException.h
19
include/ObjFW/OFBlock.h
20
include/ObjFW/OFBroadcastConditionFailedException.h
21
include/ObjFW/OFChangeCurrentDirectoryFailedException.h
22
include/ObjFW/OFCharacterSet.h
23
include/ObjFW/OFChecksumMismatchException.h
24
include/ObjFW/OFCollection.h
25
include/ObjFW/OFColor.h
26
include/ObjFW/OFCondition.h
27
include/ObjFW/OFConditionStillWaitingException.h
28
include/ObjFW/OFConnectIPSocketFailedException.h
29
include/ObjFW/OFConnectSocketFailedException.h
30
include/ObjFW/OFConnectUNIXSocketFailedException.h
31
include/ObjFW/OFConstantString.h
32
include/ObjFW/OFCopyItemFailedException.h
33
include/ObjFW/OFCountedSet.h
34
include/ObjFW/OFCreateDirectoryFailedException.h
35
include/ObjFW/OFCreateSymbolicLinkFailedException.h
36
include/ObjFW/OFCryptographicHash.h
37
include/ObjFW/OFDNSQuery.h
38
include/ObjFW/OFDNSQueryFailedException.h
39
include/ObjFW/OFDNSResolver.h
40
include/ObjFW/OFDNSResourceRecord.h
41
include/ObjFW/OFDNSResponse.h
42
include/ObjFW/OFData+CryptographicHashing.h
43
include/ObjFW/OFData+MessagePackParsing.h
44
include/ObjFW/OFData.h
45
include/ObjFW/OFDatagramSocket.h
46
include/ObjFW/OFDate.h
47
include/ObjFW/OFDictionary.h
48
include/ObjFW/OFEnumerationMutationException.h
49
include/ObjFW/OFEnumerator.h
50
include/ObjFW/OFException.h
51
include/ObjFW/OFFile.h
52
include/ObjFW/OFFileManager.h
53
include/ObjFW/OFGZIPStream.h
54
include/ObjFW/OFGetCurrentDirectoryFailedException.h
55
include/ObjFW/OFGetItemAttributesFailedException.h
56
include/ObjFW/OFGetOptionFailedException.h
57
include/ObjFW/OFHMAC.h
58
include/ObjFW/OFHTTPClient.h
59
include/ObjFW/OFHTTPCookie.h
60
include/ObjFW/OFHTTPCookieManager.h
61
include/ObjFW/OFHTTPRequest.h
62
include/ObjFW/OFHTTPRequestFailedException.h
63
include/ObjFW/OFHTTPResponse.h
64
include/ObjFW/OFHTTPServer.h
65
include/ObjFW/OFHashAlreadyCalculatedException.h
66
include/ObjFW/OFHashNotCalculatedException.h
67
include/ObjFW/OFINICategory.h
68
include/ObjFW/OFINIFile.h
69
include/ObjFW/OFIRI.h
70
include/ObjFW/OFIRIHandler.h
71
include/ObjFW/OFInflate64Stream.h
72
include/ObjFW/OFInflateStream.h
73
include/ObjFW/OFInitializationFailedException.h
74
include/ObjFW/OFInvalidArgumentException.h
75
include/ObjFW/OFInvalidEncodingException.h
76
include/ObjFW/OFInvalidFormatException.h
77
include/ObjFW/OFInvalidJSONException.h
78
include/ObjFW/OFInvalidServerResponseException.h
79
include/ObjFW/OFInvocation.h
80
include/ObjFW/OFJSONRepresentation.h
81
include/ObjFW/OFJoinThreadFailedException.h
82
include/ObjFW/OFKernelEventObserver.h
83
include/ObjFW/OFKeyValueCoding.h
84
include/ObjFW/OFLHAArchive.h
85
include/ObjFW/OFLHAArchiveEntry.h
86
include/ObjFW/OFLinkItemFailedException.h
87
include/ObjFW/OFList.h
88
include/ObjFW/OFListenOnSocketFailedException.h
89
include/ObjFW/OFLoadPluginFailedException.h
90
include/ObjFW/OFLocale.h
91
include/ObjFW/OFLockFailedException.h
92
include/ObjFW/OFLocking.h
93
include/ObjFW/OFMD5Hash.h
94
include/ObjFW/OFMalformedXMLException.h
95
include/ObjFW/OFMapTable.h
96
include/ObjFW/OFMatrix4x4.h
97
include/ObjFW/OFMemoryStream.h
98
include/ObjFW/OFMessagePackExtension.h
99
include/ObjFW/OFMessagePackRepresentation.h
100
include/ObjFW/OFMethodSignature.h
101
include/ObjFW/OFMoveItemFailedException.h
102
include/ObjFW/OFMutableArchiveEntry.h
103
include/ObjFW/OFMutableArray.h
104
include/ObjFW/OFMutableData.h
105
include/ObjFW/OFMutableDictionary.h
106
include/ObjFW/OFMutableIRI.h
107
include/ObjFW/OFMutableLHAArchiveEntry.h
108
include/ObjFW/OFMutablePair.h
109
include/ObjFW/OFMutableSet.h
110
include/ObjFW/OFMutableString.h
111
include/ObjFW/OFMutableTarArchiveEntry.h
112
include/ObjFW/OFMutableTriple.h
113
include/ObjFW/OFMutableZIPArchiveEntry.h
114
include/ObjFW/OFMutex.h
115
include/ObjFW/OFNotImplementedException.h
116
include/ObjFW/OFNotOpenException.h
117
include/ObjFW/OFNotification.h
118
include/ObjFW/OFNotificationCenter.h
119
include/ObjFW/OFNull.h
120
include/ObjFW/OFNumber.h
121
include/ObjFW/OFObject+KeyValueCoding.h
122
include/ObjFW/OFObject.h
123
include/ObjFW/OFObserveKernelEventsFailedException.h
124
include/ObjFW/OFOnce.h
125
include/ObjFW/OFOpenItemFailedException.h
126
include/ObjFW/OFOptionsParser.h
127
include/ObjFW/OFOutOfMemoryException.h
128
include/ObjFW/OFOutOfRangeException.h
129
include/ObjFW/OFPBKDF2.h
130
include/ObjFW/OFPair.h
131
include/ObjFW/OFPlainCondition.h
132
include/ObjFW/OFPlainMutex.h
133
include/ObjFW/OFPlainThread.h
134
include/ObjFW/OFPlugin.h
135
include/ObjFW/OFRIPEMD160Hash.h
136
include/ObjFW/OFReadFailedException.h
137
include/ObjFW/OFReadOrWriteFailedException.h
138
include/ObjFW/OFRecursiveMutex.h
139
include/ObjFW/OFRemoveItemFailedException.h
140
include/ObjFW/OFResolveHostFailedException.h
141
include/ObjFW/OFRunLoop.h
142
include/ObjFW/OFSHA1Hash.h
143
include/ObjFW/OFSHA224Hash.h
144
include/ObjFW/OFSHA224Or256Hash.h
145
include/ObjFW/OFSHA256Hash.h
146
include/ObjFW/OFSHA384Hash.h
147
include/ObjFW/OFSHA384Or512Hash.h
148
include/ObjFW/OFSHA512Hash.h
149
include/ObjFW/OFScrypt.h
150
include/ObjFW/OFSecureData.h
151
include/ObjFW/OFSeekFailedException.h
152
include/ObjFW/OFSeekableStream.h
153
include/ObjFW/OFSequencedPacketSocket.h
154
include/ObjFW/OFSet.h
155
include/ObjFW/OFSetItemAttributesFailedException.h
156
include/ObjFW/OFSetOptionFailedException.h
157
include/ObjFW/OFSettings.h
158
include/ObjFW/OFSignalConditionFailedException.h
159
include/ObjFW/OFSocket.h
160
include/ObjFW/OFSortedList.h
161
include/ObjFW/OFStartThreadFailedException.h
162
include/ObjFW/OFStdIOStream.h
163
include/ObjFW/OFStillLockedException.h
164
include/ObjFW/OFStream.h
165
include/ObjFW/OFStreamSocket.h
166
include/ObjFW/OFString+CryptographicHashing.h
167
include/ObjFW/OFString+JSONParsing.h
168
include/ObjFW/OFString+PathAdditions.h
169
include/ObjFW/OFString+PercentEncoding.h
170
include/ObjFW/OFString+PropertyListParsing.h
171
include/ObjFW/OFString+XMLEscaping.h
172
include/ObjFW/OFString+XMLUnescaping.h
173
include/ObjFW/OFString.h
174
include/ObjFW/OFSubprocess.h
175
include/ObjFW/OFSystemInfo+NetworkInterfaces.h
176
include/ObjFW/OFSystemInfo.h
177
include/ObjFW/OFTCPSocket.h
178
include/ObjFW/OFTLSHandshakeFailedException.h
179
include/ObjFW/OFTLSKey.h
180
include/ObjFW/OFTLSStream.h
181
include/ObjFW/OFTarArchive.h
182
include/ObjFW/OFTarArchiveEntry.h
183
include/ObjFW/OFThread.h
184
include/ObjFW/OFThreadStillRunningException.h
185
include/ObjFW/OFTimer.h
186
include/ObjFW/OFTriple.h
187
include/ObjFW/OFTruncatedDataException.h
188
include/ObjFW/OFUDPSocket.h
189
include/ObjFW/OFUNIXDatagramSocket.h
190
include/ObjFW/OFUNIXStreamSocket.h
191
include/ObjFW/OFUUID.h
192
include/ObjFW/OFUnboundNamespaceException.h
193
include/ObjFW/OFUnboundPrefixException.h
194
include/ObjFW/OFUndefinedKeyException.h
195
include/ObjFW/OFUnknownXMLEntityException.h
196
include/ObjFW/OFUnlockFailedException.h
197
include/ObjFW/OFUnsupportedProtocolException.h
198
include/ObjFW/OFUnsupportedVersionException.h
199
include/ObjFW/OFValue.h
200
include/ObjFW/OFWaitForConditionFailedException.h
201
include/ObjFW/OFWriteFailedException.h
202
include/ObjFW/OFXMLAttribute.h
203
include/ObjFW/OFXMLCDATA.h
204
include/ObjFW/OFXMLCharacters.h
205
include/ObjFW/OFXMLComment.h
206
include/ObjFW/OFXMLElement.h
207
include/ObjFW/OFXMLElementBuilder.h
208
include/ObjFW/OFXMLNode.h
209
include/ObjFW/OFXMLParser.h
210
include/ObjFW/OFXMLProcessingInstruction.h
211
include/ObjFW/OFZIPArchive.h
212
include/ObjFW/OFZIPArchiveEntry.h
213
include/ObjFW/ObjFW.h
214
include/ObjFW/macros.h
215
include/ObjFW/objfw-defs.h
216
include/ObjFW/platform.h
217
include/ObjFW/platform/GCC4.7/OFAtomic.h
218
include/ObjFW/platform/GCC4/OFAtomic.h
219
include/ObjFW/platform/PowerPC/OFAtomic.h
220
include/ObjFW/platform/macOS/OFAtomic.h
221
include/ObjFW/platform/x86/OFAtomic.h
222
include/ObjFWRT/ObjFWRT.h
223
%%TLS%%include/ObjFWTLS/ObjFWTLS.h
224
lib/libobjfw.so
225
lib/libobjfw.so.1
226
lib/libobjfw.so.1.0.1
227
lib/libobjfwrt.so
228
lib/libobjfwrt.so.1
229
lib/libobjfwrt.so.1.0.0
230
%%TLS%%lib/libobjfwtls.so
231
%%TLS%%lib/libobjfwtls.so.1
232
%%TLS%%lib/libobjfwtls.so.1.0.1
233
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFASPrintF_8h_source.html
234
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFAcceptSocketFailedException_8h_source.html
235
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFActivateSandboxFailedException_8h_source.html
236
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFAllocFailedException_8h_source.html
237
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFAlreadyOpenException_8h_source.html
238
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFApplication_8h.html
239
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFApplication_8h_source.html
240
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFArchiveEntry_8h_source.html
241
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFArchiveIRIHandler_8h_source.html
242
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFArray_09Private_8h_source.html
243
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFArray_8h.html
244
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFArray_8h_source.html
245
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFAsyncIPSocketConnector_8h_source.html
246
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFAtomic_8h_source.html
247
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFBase64_8h_source.html
248
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFBindDDPSocketFailedException_8h_source.html
249
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFBindIPSocketFailedException_8h_source.html
250
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFBindIPXSocketFailedException_8h_source.html
251
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFBindSocketFailedException_8h_source.html
252
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFBindUNIXSocketFailedException_8h_source.html
253
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFBitSetCharacterSet_8h_source.html
254
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFBlock_8h_source.html
255
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFBroadcastConditionFailedException_8h_source.html
256
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFCRC16_8h_source.html
257
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFCRC32_8h_source.html
258
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFChangeCurrentDirectoryFailedException_8h_source.html
259
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFCharacterSet_8h_source.html
260
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFChecksumMismatchException_8h_source.html
261
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFCollection_8h_source.html
262
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFColor_8h_source.html
263
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFConcreteArray_8h_source.html
264
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFConcreteColor_8h_source.html
265
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFConcreteCountedSet_8h_source.html
266
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFConcreteData_8h_source.html
267
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFConcreteDate_8h_source.html
268
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFConcreteDictionary_8h_source.html
269
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFConcreteMutableArray_8h_source.html
270
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFConcreteMutableData_8h_source.html
271
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFConcreteMutableDictionary_8h_source.html
272
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFConcreteMutableSet_8h_source.html
273
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFConcreteNumber_8h_source.html
274
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFConcreteSet_8h_source.html
275
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFConcreteSubarray_8h_source.html
276
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFConcreteValue_8h_source.html
277
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFConditionStillWaitingException_8h_source.html
278
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFCondition_8h_source.html
279
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFConnectIPSocketFailedException_8h_source.html
280
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFConnectSPXSocketFailedException_8h_source.html
281
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFConnectSocketFailedException_8h_source.html
282
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFConnectUNIXSocketFailedException_8h_source.html
283
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFConstantString_8h_source.html
284
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFCopyItemFailedException_8h_source.html
285
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFCountedSet_8h.html
286
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFCountedSet_8h_source.html
287
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFCreateDirectoryFailedException_8h_source.html
288
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFCreateSymbolicLinkFailedException_8h_source.html
289
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFCreateWindowsRegistryKeyFailedException_8h_source.html
290
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFCryptographicHash_8h_source.html
291
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFDDPSocket_8h_source.html
292
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFDNSQueryFailedException_8h_source.html
293
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFDNSQuery_8h_source.html
294
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFDNSResolverSettings_8h_source.html
295
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFDNSResolver_8h_source.html
296
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFDNSResourceRecord_8h.html
297
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFDNSResourceRecord_8h_source.html
298
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFDNSResponse_8h_source.html
299
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFData_09CryptographicHashing_8h_source.html
300
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFData_09MessagePackParsing_8h_source.html
301
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFData_8h.html
302
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFData_8h_source.html
303
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFDatagramSocket_8h.html
304
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFDatagramSocket_8h_source.html
305
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFDate_8h_source.html
306
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFDeleteWindowsRegistryKeyFailedException_8h_source.html
307
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFDeleteWindowsRegistryValueFailedException_8h_source.html
308
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFDictionary_8h_source.html
309
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFEmbeddedIRIHandler_8h_source.html
310
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFEnumerationMutationException_8h_source.html
311
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFEnumerator_8h_source.html
312
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFEpollKernelEventObserver_8h_source.html
313
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFException_8h_source.html
314
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFFileIRIHandler_8h_source.html
315
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFFileManager_8h.html
316
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFFileManager_8h_source.html
317
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFFile_8h_source.html
318
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFGZIPStream_8h_source.html
319
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFGetCurrentDirectoryFailedException_8h_source.html
320
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFGetItemAttributesFailedException_8h_source.html
321
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFGetOptionFailedException_8h_source.html
322
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFGetWindowsRegistryValueFailedException_8h_source.html
323
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFHMAC_8h_source.html
324
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFHTTPClient_8h_source.html
325
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFHTTPCookieManager_8h_source.html
326
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFHTTPCookie_8h_source.html
327
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFHTTPIRIHandler_8h_source.html
328
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFHTTPRequestFailedException_8h_source.html
329
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFHTTPRequest_8h.html
330
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFHTTPRequest_8h_source.html
331
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFHTTPResponse_8h_source.html
332
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFHTTPServer_8h_source.html
333
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFHashAlreadyCalculatedException_8h_source.html
334
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFHashNotCalculatedException_8h_source.html
335
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFHostAddressResolver_8h_source.html
336
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFHuffmanTree_8h_source.html
337
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFINICategory_09Private_8h_source.html
338
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFINICategory_8h_source.html
339
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFINIFileSettings_8h_source.html
340
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFINIFile_8h_source.html
341
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFIPXSocket_8h_source.html
342
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFIRIHandler_8h_source.html
343
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFIRI_09Private_8h_source.html
344
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFIRI_8h_source.html
345
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFInflate64Stream_8h_source.html
346
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFInflateStream_8h_source.html
347
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFInitializationFailedException_8h_source.html
348
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFInvalidArgumentException_8h_source.html
349
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFInvalidEncodingException_8h_source.html
350
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFInvalidFormatException_8h_source.html
351
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFInvalidJSONException_8h_source.html
352
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFInvalidServerResponseException_8h_source.html
353
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFInvertedCharacterSet_8h_source.html
354
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFInvocation_8h_source.html
355
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFJSONRepresentation_8h_source.html
356
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFJoinThreadFailedException_8h_source.html
357
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFKernelEventObserver_8h_source.html
358
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFKeyValueCoding_8h_source.html
359
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFKqueueKernelEventObserver_8h_source.html
360
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFLHAArchiveEntry_09Private_8h_source.html
361
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFLHAArchiveEntry_8h_source.html
362
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFLHAArchive_8h_source.html
363
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFLHADecompressingStream_8h_source.html
364
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFLinkItemFailedException_8h_source.html
365
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFList_8h.html
366
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFList_8h_source.html
367
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFListenOnSocketFailedException_8h_source.html
368
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFLoadPluginFailedException_8h_source.html
369
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFLocale_8h.html
370
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFLocale_8h_source.html
371
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFLockFailedException_8h_source.html
372
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFLocking_8h_source.html
373
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFMD5Hash_8h_source.html
374
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFMalformedXMLException_8h_source.html
375
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFMapTable_09Private_8h_source.html
376
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFMapTable_8h.html
377
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFMapTable_8h_source.html
378
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFMatrix4x4_8h_source.html
379
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFMemoryStream_8h_source.html
380
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFMessagePackExtension_8h_source.html
381
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFMessagePackRepresentation_8h_source.html
382
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFMethodSignature_8h_source.html
383
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFMoveItemFailedException_8h_source.html
384
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFMutableArchiveEntry_8h_source.html
385
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFMutableArray_8h.html
386
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFMutableArray_8h_source.html
387
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFMutableData_8h_source.html
388
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFMutableDictionary_8h.html
389
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFMutableDictionary_8h_source.html
390
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFMutableIRI_8h_source.html
391
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFMutableLHAArchiveEntry_8h_source.html
392
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFMutablePair_8h_source.html
393
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFMutableSet_8h_source.html
394
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFMutableString_8h_source.html
395
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFMutableTarArchiveEntry_8h_source.html
396
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFMutableTriple_8h_source.html
397
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFMutableUTF8String_8h_source.html
398
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFMutableZIPArchiveEntry_8h_source.html
399
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFMutex_8h_source.html
400
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFNotImplementedException_8h_source.html
401
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFNotOpenException_8h_source.html
402
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFNotificationCenter_8h_source.html
403
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFNotification_8h.html
404
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFNotification_8h_source.html
405
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFNull_8h_source.html
406
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFNumber_8h.html
407
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFNumber_8h_source.html
408
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFObject_09KeyValueCoding_8h_source.html
409
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFObject_8h.html
410
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFObject_8h_source.html
411
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFObserveKernelEventsFailedException_8h_source.html
412
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFOnce_8h.html
413
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFOnce_8h_source.html
414
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFOpenItemFailedException_8h_source.html
415
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFOpenWindowsRegistryKeyFailedException_8h_source.html
416
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFOptionsParser_8h_source.html
417
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFOutOfMemoryException_8h_source.html
418
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFOutOfRangeException_8h_source.html
419
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFPBKDF2_8h.html
420
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFPBKDF2_8h_source.html
421
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFPair_8h_source.html
422
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFPlainCondition_8h_source.html
423
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFPlainMutex_8h_source.html
424
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFPlainThread_8h_source.html
425
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFPlugin_8h_source.html
426
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFPollKernelEventObserver_8h_source.html
427
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFRIPEMD160Hash_8h_source.html
428
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFRangeCharacterSet_8h_source.html
429
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFReadFailedException_8h_source.html
430
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFReadOrWriteFailedException_8h_source.html
431
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFRecursiveMutex_8h_source.html
432
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFRemoveItemFailedException_8h_source.html
433
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFResolveHostFailedException_8h_source.html
434
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFRunLoop_09Private_8h_source.html
435
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFRunLoop_8h.html
436
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFRunLoop_8h_source.html
437
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFSHA1Hash_8h_source.html
438
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFSHA224Hash_8h_source.html
439
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFSHA224Or256Hash_8h_source.html
440
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFSHA256Hash_8h_source.html
441
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFSHA384Hash_8h_source.html
442
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFSHA384Or512Hash_8h_source.html
443
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFSHA512Hash_8h_source.html
444
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFSPXSocket_8h.html
445
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFSPXSocket_8h_source.html
446
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFSPXStreamSocket_8h.html
447
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFSPXStreamSocket_8h_source.html
448
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFSandbox_8h_source.html
449
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFScrypt_8h.html
450
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFScrypt_8h_source.html
451
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFSecureData_8h_source.html
452
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFSeekFailedException_8h_source.html
453
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFSeekableStream_8h.html
454
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFSeekableStream_8h_source.html
455
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFSelectKernelEventObserver_8h_source.html
456
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFSequencedPacketSocket_09Private_8h_source.html
457
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFSequencedPacketSocket_8h.html
458
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFSequencedPacketSocket_8h_source.html
459
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFSetItemAttributesFailedException_8h_source.html
460
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFSetOptionFailedException_8h_source.html
461
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFSetWindowsRegistryValueFailedException_8h_source.html
462
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFSet_8h.html
463
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFSet_8h_source.html
464
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFSettings_8h_source.html
465
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFSignalConditionFailedException_8h_source.html
466
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFSocket_09Private_8h_source.html
467
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFSocket_8h.html
468
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFSocket_8h_source.html
469
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFSortedList_8h_source.html
470
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFStartThreadFailedException_8h_source.html
471
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFStdIOStream_09Private_8h_source.html
472
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFStdIOStream_8h.html
473
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFStdIOStream_8h_source.html
474
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFStillLockedException_8h_source.html
475
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFStrFTime_8h_source.html
476
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFStrPTime_8h_source.html
477
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFStreamSocket_09Private_8h_source.html
478
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFStreamSocket_8h.html
479
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFStreamSocket_8h_source.html
480
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFStream_09Private_8h_source.html
481
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFStream_8h.html
482
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFStream_8h_source.html
483
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFString_09CryptographicHashing_8h_source.html
484
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFString_09JSONParsing_8h_source.html
485
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFString_09PathAdditions_8h_source.html
486
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFString_09PercentEncoding_8h_source.html
487
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFString_09PropertyListParsing_8h_source.html
488
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFString_09XMLEscaping_8h_source.html
489
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFString_09XMLUnescaping_8h.html
490
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFString_09XMLUnescaping_8h_source.html
491
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFString_8h.html
492
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFString_8h_source.html
493
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFSubarray_8h_source.html
494
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFSubdata_8h_source.html
495
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFSubprocess_8h_source.html
496
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFSystemInfo_09NetworkInterfaces_8h_source.html
497
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFSystemInfo_8h_source.html
498
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFTCPSocketSOCKS5Connector_8h_source.html
499
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFTCPSocket_8h.html
500
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFTCPSocket_8h_source.html
501
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFTLSHandshakeFailedException_8h_source.html
502
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFTLSKey_8h_source.html
503
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFTLSStream_8h.html
504
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFTLSStream_8h_source.html
505
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFTaggedPointerColor_8h_source.html
506
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFTaggedPointerDate_8h_source.html
507
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFTaggedPointerNumber_8h_source.html
508
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFTarArchiveEntry_09Private_8h_source.html
509
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFTarArchiveEntry_8h.html
510
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFTarArchiveEntry_8h_source.html
511
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFTarArchive_8h_source.html
512
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFThreadStillRunningException_8h_source.html
513
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFThread_09Private_8h_source.html
514
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFThread_8h.html
515
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFThread_8h_source.html
516
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFTimer_09Private_8h_source.html
517
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFTimer_8h.html
518
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFTimer_8h_source.html
519
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFTriple_8h_source.html
520
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFTruncatedDataException_8h_source.html
521
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFUDPSocket_09Private_8h_source.html
522
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFUDPSocket_8h_source.html
523
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFUNIXDatagramSocket_8h_source.html
524
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFUNIXStreamSocket_8h_source.html
525
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFUTF8String_09Private_8h_source.html
526
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFUTF8String_8h_source.html
527
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFUUID_8h_source.html
528
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFUnboundNamespaceException_8h_source.html
529
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFUnboundPrefixException_8h_source.html
530
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFUndefinedKeyException_8h_source.html
531
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFUnknownXMLEntityException_8h_source.html
532
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFUnlockFailedException_8h_source.html
533
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFUnsupportedProtocolException_8h_source.html
534
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFUnsupportedVersionException_8h_source.html
535
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFValue_8h_source.html
536
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFWaitForConditionFailedException_8h_source.html
537
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFWin32ConsoleStdIOStream_8h_source.html
538
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFWindowsRegistryKey_8h_source.html
539
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFWriteFailedException_8h_source.html
540
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFXMLAttribute_8h_source.html
541
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFXMLCDATA_8h_source.html
542
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFXMLCharacters_8h_source.html
543
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFXMLComment_8h_source.html
544
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFXMLElementBuilder_8h_source.html
545
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFXMLElement_8h_source.html
546
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFXMLNode_09Private_8h_source.html
547
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFXMLNode_8h_source.html
548
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFXMLParser_8h_source.html
549
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFXMLProcessingInstruction_8h_source.html
550
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFZIPArchiveEntry_09Private_8h_source.html
551
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFZIPArchiveEntry_8h.html
552
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFZIPArchiveEntry_8h_source.html
553
%%PORTDOCS%%%%DOCSDIR%%/objfw/OFZIPArchive_8h_source.html
554
%%PORTDOCS%%%%DOCSDIR%%/objfw/ObjFWRT_8h.html
555
%%PORTDOCS%%%%DOCSDIR%%/objfw/ObjFWRT_8h_source.html
556
%%PORTDOCS%%%%DOCSDIR%%/objfw/ObjFW_8h_source.html
557
%%PORTDOCS%%%%DOCSDIR%%/objfw/annotated.html
558
%%PORTDOCS%%%%DOCSDIR%%/objfw/bc_s.png
559
%%PORTDOCS%%%%DOCSDIR%%/objfw/bc_sd.png
560
%%PORTDOCS%%%%DOCSDIR%%/objfw/bdwn.png
561
%%PORTDOCS%%%%DOCSDIR%%/objfw/classOFRPNSResourceRecord.html
562
%%PORTDOCS%%%%DOCSDIR%%/objfw/classes.html
563
%%PORTDOCS%%%%DOCSDIR%%/objfw/closed.png
564
%%PORTDOCS%%%%DOCSDIR%%/objfw/dir_68267d1309a1af8e8297ef4c3efbcdba.html
565
%%PORTDOCS%%%%DOCSDIR%%/objfw/dir_6e33d6500a76933db4361f663e54ab12.html
566
%%PORTDOCS%%%%DOCSDIR%%/objfw/dir_bf9f26469d00835ba20ff8d80ee5a804.html
567
%%PORTDOCS%%%%DOCSDIR%%/objfw/doc.png
568
%%PORTDOCS%%%%DOCSDIR%%/objfw/docd.png
569
%%PORTDOCS%%%%DOCSDIR%%/objfw/doxygen.css
570
%%PORTDOCS%%%%DOCSDIR%%/objfw/doxygen.svg
571
%%PORTDOCS%%%%DOCSDIR%%/objfw/dynsections.js
572
%%PORTDOCS%%%%DOCSDIR%%/objfw/files.html
573
%%PORTDOCS%%%%DOCSDIR%%/objfw/folderclosed.png
574
%%PORTDOCS%%%%DOCSDIR%%/objfw/folderopen.png
575
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions.html
576
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_b.html
577
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_c.html
578
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_d.html
579
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_e.html
580
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_f.html
581
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_func.html
582
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_func_b.html
583
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_func_c.html
584
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_func_d.html
585
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_func_e.html
586
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_func_f.html
587
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_func_g.html
588
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_func_h.html
589
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_func_i.html
590
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_func_j.html
591
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_func_k.html
592
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_func_l.html
593
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_func_m.html
594
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_func_n.html
595
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_func_o.html
596
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_func_p.html
597
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_func_q.html
598
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_func_r.html
599
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_func_s.html
600
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_func_t.html
601
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_func_u.html
602
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_func_v.html
603
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_func_w.html
604
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_func_x.html
605
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_func_y.html
606
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_func_z.html
607
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_g.html
608
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_h.html
609
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_i.html
610
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_j.html
611
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_k.html
612
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_l.html
613
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_m.html
614
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_n.html
615
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_o.html
616
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_p.html
617
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_prop.html
618
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_prop_b.html
619
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_prop_c.html
620
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_prop_d.html
621
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_prop_e.html
622
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_prop_f.html
623
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_prop_g.html
624
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_prop_h.html
625
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_prop_i.html
626
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_prop_j.html
627
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_prop_k.html
628
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_prop_l.html
629
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_prop_m.html
630
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_prop_n.html
631
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_prop_o.html
632
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_prop_p.html
633
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_prop_q.html
634
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_prop_r.html
635
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_prop_s.html
636
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_prop_t.html
637
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_prop_u.html
638
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_prop_v.html
639
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_prop_w.html
640
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_prop_x.html
641
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_prop_y.html
642
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_q.html
643
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_r.html
644
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_s.html
645
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_t.html
646
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_u.html
647
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_v.html
648
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_vars.html
649
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_w.html
650
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_x.html
651
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_y.html
652
%%PORTDOCS%%%%DOCSDIR%%/objfw/functions_z.html
653
%%PORTDOCS%%%%DOCSDIR%%/objfw/globals.html
654
%%PORTDOCS%%%%DOCSDIR%%/objfw/globals_a.html
655
%%PORTDOCS%%%%DOCSDIR%%/objfw/globals_b.html
656
%%PORTDOCS%%%%DOCSDIR%%/objfw/globals_c.html
657
%%PORTDOCS%%%%DOCSDIR%%/objfw/globals_d.html
658
%%PORTDOCS%%%%DOCSDIR%%/objfw/globals_defs.html
659
%%PORTDOCS%%%%DOCSDIR%%/objfw/globals_enum.html
660
%%PORTDOCS%%%%DOCSDIR%%/objfw/globals_eval.html
661
%%PORTDOCS%%%%DOCSDIR%%/objfw/globals_f.html
662
%%PORTDOCS%%%%DOCSDIR%%/objfw/globals_func.html
663
%%PORTDOCS%%%%DOCSDIR%%/objfw/globals_h.html
664
%%PORTDOCS%%%%DOCSDIR%%/objfw/globals_i.html
665
%%PORTDOCS%%%%DOCSDIR%%/objfw/globals_l.html
666
%%PORTDOCS%%%%DOCSDIR%%/objfw/globals_m.html
667
%%PORTDOCS%%%%DOCSDIR%%/objfw/globals_n.html
668
%%PORTDOCS%%%%DOCSDIR%%/objfw/globals_o.html
669
%%PORTDOCS%%%%DOCSDIR%%/objfw/globals_p.html
670
%%PORTDOCS%%%%DOCSDIR%%/objfw/globals_r.html
671
%%PORTDOCS%%%%DOCSDIR%%/objfw/globals_s.html
672
%%PORTDOCS%%%%DOCSDIR%%/objfw/globals_t.html
673
%%PORTDOCS%%%%DOCSDIR%%/objfw/globals_type.html
674
%%PORTDOCS%%%%DOCSDIR%%/objfw/globals_vars.html
675
%%PORTDOCS%%%%DOCSDIR%%/objfw/globals_y.html
676
%%PORTDOCS%%%%DOCSDIR%%/objfw/globals_z.html
677
%%PORTDOCS%%%%DOCSDIR%%/objfw/hierarchy.html
678
%%PORTDOCS%%%%DOCSDIR%%/objfw/index.html
679
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFAAAADNSResourceRecord-members.html
680
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFAAAADNSResourceRecord.html
681
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFAAAADNSResourceRecord.png
682
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFADNSResourceRecord-members.html
683
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFADNSResourceRecord.html
684
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFADNSResourceRecord.png
685
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFAcceptSocketFailedException-members.html
686
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFAcceptSocketFailedException.html
687
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFAcceptSocketFailedException.png
688
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFAllocFailedException-members.html
689
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFAllocFailedException.html
690
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFAllocFailedException.png
691
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFAlreadyOpenException-members.html
692
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFAlreadyOpenException.html
693
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFAlreadyOpenException.png
694
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFApplication-members.html
695
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFApplication.html
696
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFApplication.png
697
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFArray-members.html
698
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFArray.html
699
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFArray.png
700
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFBindDDPSocketFailedException-members.html
701
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFBindDDPSocketFailedException.html
702
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFBindDDPSocketFailedException.png
703
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFBindIPSocketFailedException-members.html
704
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFBindIPSocketFailedException.html
705
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFBindIPSocketFailedException.png
706
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFBindIPXSocketFailedException-members.html
707
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFBindIPXSocketFailedException.html
708
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFBindIPXSocketFailedException.png
709
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFBindSocketFailedException-members.html
710
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFBindSocketFailedException.html
711
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFBindSocketFailedException.png
712
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFBindUNIXSocketFailedException-members.html
713
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFBindUNIXSocketFailedException.html
714
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFBindUNIXSocketFailedException.png
715
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFBlock-members.html
716
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFBlock.html
717
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFBlock.png
718
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFBroadcastConditionFailedException-members.html
719
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFBroadcastConditionFailedException.html
720
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFBroadcastConditionFailedException.png
721
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFCNAMEDNSResourceRecord-members.html
722
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFCNAMEDNSResourceRecord.html
723
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFCNAMEDNSResourceRecord.png
724
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFChangeCurrentDirectoryFailedException-members.html
725
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFChangeCurrentDirectoryFailedException.html
726
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFChangeCurrentDirectoryFailedException.png
727
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFCharacterSet-members.html
728
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFCharacterSet.html
729
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFCharacterSet.png
730
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFChecksumMismatchException-members.html
731
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFChecksumMismatchException.html
732
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFChecksumMismatchException.png
733
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFColor-members.html
734
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFColor.html
735
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFColor.png
736
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFCondition-members.html
737
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFCondition.html
738
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFCondition.png
739
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFConditionStillWaitingException-members.html
740
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFConditionStillWaitingException.html
741
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFConditionStillWaitingException.png
742
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFConnectIPSocketFailedException-members.html
743
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFConnectIPSocketFailedException.html
744
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFConnectIPSocketFailedException.png
745
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFConnectSPXSocketFailedException-members.html
746
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFConnectSPXSocketFailedException.html
747
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFConnectSPXSocketFailedException.png
748
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFConnectSocketFailedException-members.html
749
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFConnectSocketFailedException.html
750
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFConnectSocketFailedException.png
751
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFConnectUNIXSocketFailedException-members.html
752
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFConnectUNIXSocketFailedException.html
753
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFConnectUNIXSocketFailedException.png
754
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFConstantString-members.html
755
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFConstantString.html
756
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFConstantString.png
757
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFCopyItemFailedException-members.html
758
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFCopyItemFailedException.html
759
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFCopyItemFailedException.png
760
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFCountedSet-members.html
761
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFCountedSet.html
762
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFCountedSet.png
763
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFCreateDirectoryFailedException-members.html
764
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFCreateDirectoryFailedException.html
765
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFCreateDirectoryFailedException.png
766
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFCreateSymbolicLinkFailedException-members.html
767
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFCreateSymbolicLinkFailedException.html
768
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFCreateSymbolicLinkFailedException.png
769
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFCreateWindowsRegistryKeyFailedException-members.html
770
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFCreateWindowsRegistryKeyFailedException.html
771
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFCreateWindowsRegistryKeyFailedException.png
772
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFDDPSocket-members.html
773
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFDDPSocket.html
774
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFDDPSocket.png
775
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFDNSQuery-members.html
776
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFDNSQuery.html
777
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFDNSQuery.png
778
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFDNSQueryFailedException-members.html
779
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFDNSQueryFailedException.html
780
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFDNSQueryFailedException.png
781
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFDNSResolver-members.html
782
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFDNSResolver.html
783
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFDNSResolver.png
784
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFDNSResourceRecord-members.html
785
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFDNSResourceRecord.html
786
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFDNSResourceRecord.png
787
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFDNSResponse-members.html
788
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFDNSResponse.html
789
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFDNSResponse.png
790
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFData-members.html
791
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFData.html
792
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFData.png
793
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFDatagramSocket-members.html
794
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFDatagramSocket.html
795
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFDatagramSocket.png
796
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFDate-members.html
797
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFDate.html
798
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFDate.png
799
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFDeleteWindowsRegistryKeyFailedException-members.html
800
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFDeleteWindowsRegistryKeyFailedException.html
801
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFDeleteWindowsRegistryKeyFailedException.png
802
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFDeleteWindowsRegistryValueFailedException-members.html
803
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFDeleteWindowsRegistryValueFailedException.html
804
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFDeleteWindowsRegistryValueFailedException.png
805
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFDictionary-members.html
806
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFDictionary.html
807
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFDictionary.png
808
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFEnumerationMutationException-members.html
809
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFEnumerationMutationException.html
810
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFEnumerationMutationException.png
811
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFEnumerator-members.html
812
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFEnumerator.html
813
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFEnumerator.png
814
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFException-members.html
815
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFException.html
816
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFException.png
817
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFFile-members.html
818
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFFile.html
819
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFFile.png
820
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFFileManager-members.html
821
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFFileManager.html
822
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFFileManager.png
823
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFGZIPStream-members.html
824
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFGZIPStream.html
825
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFGZIPStream.png
826
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFGetCurrentDirectoryFailedException-members.html
827
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFGetCurrentDirectoryFailedException.html
828
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFGetCurrentDirectoryFailedException.png
829
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFGetItemAttributesFailedException-members.html
830
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFGetItemAttributesFailedException.html
831
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFGetItemAttributesFailedException.png
832
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFGetOptionFailedException-members.html
833
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFGetOptionFailedException.html
834
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFGetOptionFailedException.png
835
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFGetWindowsRegistryValueFailedException-members.html
836
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFGetWindowsRegistryValueFailedException.html
837
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFGetWindowsRegistryValueFailedException.png
838
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFHINFODNSResourceRecord-members.html
839
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFHINFODNSResourceRecord.html
840
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFHINFODNSResourceRecord.png
841
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFHMAC-members.html
842
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFHMAC.html
843
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFHMAC.png
844
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFHTTPClient-members.html
845
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFHTTPClient.html
846
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFHTTPClient.png
847
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFHTTPCookie-members.html
848
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFHTTPCookie.html
849
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFHTTPCookie.png
850
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFHTTPCookieManager-members.html
851
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFHTTPCookieManager.html
852
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFHTTPCookieManager.png
853
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFHTTPRequest-members.html
854
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFHTTPRequest.html
855
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFHTTPRequest.png
856
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFHTTPRequestFailedException-members.html
857
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFHTTPRequestFailedException.html
858
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFHTTPRequestFailedException.png
859
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFHTTPResponse-members.html
860
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFHTTPResponse.html
861
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFHTTPResponse.png
862
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFHTTPServer-members.html
863
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFHTTPServer.html
864
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFHTTPServer.png
865
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFHashAlreadyCalculatedException-members.html
866
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFHashAlreadyCalculatedException.html
867
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFHashAlreadyCalculatedException.png
868
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFHashNotCalculatedException-members.html
869
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFHashNotCalculatedException.html
870
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFHashNotCalculatedException.png
871
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFINICategory-members.html
872
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFINICategory.html
873
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFINICategory.png
874
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFINIFile-members.html
875
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFINIFile.html
876
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFINIFile.png
877
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFIPXSocket-members.html
878
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFIPXSocket.html
879
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFIPXSocket.png
880
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFIRI-members.html
881
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFIRI.html
882
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFIRI.png
883
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFIRIHandler-members.html
884
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFIRIHandler.html
885
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFIRIHandler.png
886
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFInflate64Stream-members.html
887
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFInflate64Stream.html
888
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFInflate64Stream.png
889
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFInflateStream-members.html
890
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFInflateStream.html
891
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFInflateStream.png
892
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFInitializationFailedException-members.html
893
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFInitializationFailedException.html
894
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFInitializationFailedException.png
895
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFInvalidArgumentException-members.html
896
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFInvalidArgumentException.html
897
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFInvalidArgumentException.png
898
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFInvalidEncodingException-members.html
899
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFInvalidEncodingException.html
900
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFInvalidEncodingException.png
901
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFInvalidFormatException-members.html
902
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFInvalidFormatException.html
903
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFInvalidFormatException.png
904
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFInvalidJSONException-members.html
905
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFInvalidJSONException.html
906
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFInvalidJSONException.png
907
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFInvalidServerResponseException-members.html
908
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFInvalidServerResponseException.html
909
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFInvalidServerResponseException.png
910
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFInvocation-members.html
911
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFInvocation.html
912
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFInvocation.png
913
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFJoinThreadFailedException-members.html
914
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFJoinThreadFailedException.html
915
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFJoinThreadFailedException.png
916
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFKernelEventObserver-members.html
917
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFKernelEventObserver.html
918
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFKernelEventObserver.png
919
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFLHAArchive-members.html
920
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFLHAArchive.html
921
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFLHAArchive.png
922
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFLHAArchiveEntry-members.html
923
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFLHAArchiveEntry.html
924
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFLHAArchiveEntry.png
925
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFLinkItemFailedException-members.html
926
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFLinkItemFailedException.html
927
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFLinkItemFailedException.png
928
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFList-members.html
929
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFList.html
930
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFList.png
931
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFListenOnSocketFailedException-members.html
932
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFListenOnSocketFailedException.html
933
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFListenOnSocketFailedException.png
934
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFLoadPluginFailedException-members.html
935
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFLoadPluginFailedException.html
936
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFLoadPluginFailedException.png
937
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFLocale-members.html
938
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFLocale.html
939
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFLocale.png
940
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFLockFailedException-members.html
941
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFLockFailedException.html
942
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFLockFailedException.png
943
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMD5Hash-members.html
944
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMD5Hash.html
945
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMD5Hash.png
946
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMXDNSResourceRecord-members.html
947
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMXDNSResourceRecord.html
948
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMXDNSResourceRecord.png
949
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMalformedXMLException-members.html
950
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMalformedXMLException.html
951
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMalformedXMLException.png
952
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMapTable-members.html
953
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMapTable.html
954
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMapTable.png
955
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMapTableEnumerator-members.html
956
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMapTableEnumerator.html
957
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMapTableEnumerator.png
958
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMatrix4x4-members.html
959
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMatrix4x4.html
960
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMatrix4x4.png
961
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMemoryStream-members.html
962
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMemoryStream.html
963
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMemoryStream.png
964
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMessagePackExtension-members.html
965
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMessagePackExtension.html
966
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMessagePackExtension.png
967
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMethodSignature-members.html
968
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMethodSignature.html
969
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMethodSignature.png
970
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMoveItemFailedException-members.html
971
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMoveItemFailedException.html
972
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMoveItemFailedException.png
973
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMutableArray-members.html
974
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMutableArray.html
975
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMutableArray.png
976
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMutableData-members.html
977
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMutableData.html
978
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMutableData.png
979
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMutableDictionary-members.html
980
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMutableDictionary.html
981
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMutableDictionary.png
982
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMutableIRI-members.html
983
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMutableIRI.html
984
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMutableIRI.png
985
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMutableLHAArchiveEntry-members.html
986
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMutableLHAArchiveEntry.html
987
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMutableLHAArchiveEntry.png
988
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMutablePair-members.html
989
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMutablePair.html
990
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMutablePair.png
991
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMutableSet-members.html
992
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMutableSet.html
993
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMutableSet.png
994
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMutableString-members.html
995
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMutableString.html
996
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMutableString.png
997
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMutableTarArchiveEntry-members.html
998
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMutableTarArchiveEntry.html
999
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMutableTarArchiveEntry.png
1000
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMutableTriple-members.html
1001
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMutableTriple.html
1002
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMutableTriple.png
1003
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMutableZIPArchiveEntry-members.html
1004
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMutableZIPArchiveEntry.html
1005
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMutableZIPArchiveEntry.png
1006
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMutex-members.html
1007
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMutex.html
1008
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFMutex.png
1009
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFNSDNSResourceRecord-members.html
1010
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFNSDNSResourceRecord.html
1011
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFNSDNSResourceRecord.png
1012
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFNotImplementedException-members.html
1013
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFNotImplementedException.html
1014
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFNotImplementedException.png
1015
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFNotOpenException-members.html
1016
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFNotOpenException.html
1017
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFNotOpenException.png
1018
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFNotification-members.html
1019
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFNotification.html
1020
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFNotification.png
1021
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFNotificationCenter-members.html
1022
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFNotificationCenter.html
1023
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFNotificationCenter.png
1024
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFNull-members.html
1025
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFNull.html
1026
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFNull.png
1027
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFNumber-members.html
1028
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFNumber.html
1029
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFNumber.png
1030
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFObject-members.html
1031
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFObject.html
1032
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFObject.png
1033
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFObserveKernelEventsFailedException-members.html
1034
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFObserveKernelEventsFailedException.html
1035
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFObserveKernelEventsFailedException.png
1036
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFOpenItemFailedException-members.html
1037
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFOpenItemFailedException.html
1038
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFOpenItemFailedException.png
1039
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFOpenWindowsRegistryKeyFailedException-members.html
1040
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFOpenWindowsRegistryKeyFailedException.html
1041
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFOpenWindowsRegistryKeyFailedException.png
1042
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFOptionsParser-members.html
1043
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFOptionsParser.html
1044
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFOptionsParser.png
1045
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFOutOfMemoryException-members.html
1046
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFOutOfMemoryException.html
1047
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFOutOfMemoryException.png
1048
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFOutOfRangeException-members.html
1049
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFOutOfRangeException.html
1050
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFOutOfRangeException.png
1051
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFPTRDNSResourceRecord-members.html
1052
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFPTRDNSResourceRecord.html
1053
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFPTRDNSResourceRecord.png
1054
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFPair-members.html
1055
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFPair.html
1056
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFPair.png
1057
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFPlugin-members.html
1058
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFPlugin.html
1059
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFPlugin.png
1060
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFRIPEMD160Hash-members.html
1061
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFRIPEMD160Hash.html
1062
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFRIPEMD160Hash.png
1063
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFReadFailedException-members.html
1064
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFReadFailedException.html
1065
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFReadFailedException.png
1066
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFReadOrWriteFailedException-members.html
1067
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFReadOrWriteFailedException.html
1068
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFReadOrWriteFailedException.png
1069
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFRecursiveMutex-members.html
1070
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFRecursiveMutex.html
1071
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFRecursiveMutex.png
1072
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFRemoveItemFailedException-members.html
1073
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFRemoveItemFailedException.html
1074
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFRemoveItemFailedException.png
1075
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFResolveHostFailedException-members.html
1076
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFResolveHostFailedException.html
1077
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFResolveHostFailedException.png
1078
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFRunLoop-members.html
1079
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFRunLoop.html
1080
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFRunLoop.png
1081
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSHA1Hash-members.html
1082
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSHA1Hash.html
1083
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSHA1Hash.png
1084
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSHA224Hash-members.html
1085
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSHA224Hash.html
1086
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSHA224Hash.png
1087
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSHA224Or256Hash-members.html
1088
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSHA224Or256Hash.html
1089
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSHA224Or256Hash.png
1090
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSHA256Hash-members.html
1091
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSHA256Hash.html
1092
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSHA256Hash.png
1093
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSHA384Hash-members.html
1094
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSHA384Hash.html
1095
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSHA384Hash.png
1096
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSHA384Or512Hash-members.html
1097
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSHA384Or512Hash.html
1098
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSHA384Or512Hash.png
1099
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSHA512Hash-members.html
1100
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSHA512Hash.html
1101
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSHA512Hash.png
1102
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSOADNSResourceRecord-members.html
1103
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSOADNSResourceRecord.html
1104
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSOADNSResourceRecord.png
1105
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSPXSocket-members.html
1106
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSPXSocket.html
1107
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSPXSocket.png
1108
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSPXStreamSocket-members.html
1109
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSPXStreamSocket.html
1110
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSPXStreamSocket.png
1111
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSRVDNSResourceRecord-members.html
1112
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSRVDNSResourceRecord.html
1113
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSRVDNSResourceRecord.png
1114
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSecureData-members.html
1115
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSecureData.html
1116
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSecureData.png
1117
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSeekFailedException-members.html
1118
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSeekFailedException.html
1119
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSeekFailedException.png
1120
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSeekableStream-members.html
1121
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSeekableStream.html
1122
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSeekableStream.png
1123
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSequencedPacketSocket-members.html
1124
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSequencedPacketSocket.html
1125
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSequencedPacketSocket.png
1126
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSet-members.html
1127
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSet.html
1128
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSet.png
1129
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSetItemAttributesFailedException-members.html
1130
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSetItemAttributesFailedException.html
1131
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSetItemAttributesFailedException.png
1132
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSetOptionFailedException-members.html
1133
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSetOptionFailedException.html
1134
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSetOptionFailedException.png
1135
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSetWindowsRegistryValueFailedException-members.html
1136
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSetWindowsRegistryValueFailedException.html
1137
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSetWindowsRegistryValueFailedException.png
1138
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSettings-members.html
1139
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSettings.html
1140
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSettings.png
1141
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSignalConditionFailedException-members.html
1142
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSignalConditionFailedException.html
1143
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSignalConditionFailedException.png
1144
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSortedList-members.html
1145
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSortedList.html
1146
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSortedList.png
1147
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFStartThreadFailedException-members.html
1148
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFStartThreadFailedException.html
1149
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFStartThreadFailedException.png
1150
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFStdIOStream-members.html
1151
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFStdIOStream.html
1152
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFStdIOStream.png
1153
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFStillLockedException-members.html
1154
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFStillLockedException.html
1155
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFStillLockedException.png
1156
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFStream-members.html
1157
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFStream.html
1158
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFStream.png
1159
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFStreamSocket-members.html
1160
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFStreamSocket.html
1161
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFStreamSocket.png
1162
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFString-members.html
1163
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFString.html
1164
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFString.png
1165
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSubprocess-members.html
1166
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSubprocess.html
1167
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSubprocess.png
1168
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSystemInfo-members.html
1169
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSystemInfo.html
1170
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFSystemInfo.png
1171
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFTCPSocket-members.html
1172
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFTCPSocket.html
1173
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFTCPSocket.png
1174
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFTLSHandshakeFailedException-members.html
1175
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFTLSHandshakeFailedException.html
1176
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFTLSHandshakeFailedException.png
1177
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFTLSStream-members.html
1178
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFTLSStream.html
1179
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFTLSStream.png
1180
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFTXTDNSResourceRecord-members.html
1181
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFTXTDNSResourceRecord.html
1182
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFTXTDNSResourceRecord.png
1183
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFTarArchive-members.html
1184
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFTarArchive.html
1185
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFTarArchive.png
1186
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFTarArchiveEntry-members.html
1187
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFTarArchiveEntry.html
1188
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFTarArchiveEntry.png
1189
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFThread-members.html
1190
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFThread.html
1191
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFThread.png
1192
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFThreadStillRunningException-members.html
1193
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFThreadStillRunningException.html
1194
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFThreadStillRunningException.png
1195
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFTimer-members.html
1196
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFTimer.html
1197
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFTimer.png
1198
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFTriple-members.html
1199
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFTriple.html
1200
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFTriple.png
1201
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFTruncatedDataException-members.html
1202
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFTruncatedDataException.html
1203
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFTruncatedDataException.png
1204
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFUDPSocket-members.html
1205
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFUDPSocket.html
1206
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFUDPSocket.png
1207
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFUNIXDatagramSocket-members.html
1208
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFUNIXDatagramSocket.html
1209
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFUNIXDatagramSocket.png
1210
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFUNIXStreamSocket-members.html
1211
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFUNIXStreamSocket.html
1212
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFUNIXStreamSocket.png
1213
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFUUID-members.html
1214
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFUUID.html
1215
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFUUID.png
1216
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFUnboundNamespaceException-members.html
1217
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFUnboundNamespaceException.html
1218
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFUnboundNamespaceException.png
1219
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFUnboundPrefixException-members.html
1220
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFUnboundPrefixException.html
1221
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFUnboundPrefixException.png
1222
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFUndefinedKeyException-members.html
1223
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFUndefinedKeyException.html
1224
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFUndefinedKeyException.png
1225
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFUnknownXMLEntityException-members.html
1226
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFUnknownXMLEntityException.html
1227
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFUnknownXMLEntityException.png
1228
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFUnlockFailedException-members.html
1229
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFUnlockFailedException.html
1230
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFUnlockFailedException.png
1231
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFUnsupportedProtocolException-members.html
1232
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFUnsupportedProtocolException.html
1233
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFUnsupportedProtocolException.png
1234
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFUnsupportedVersionException-members.html
1235
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFUnsupportedVersionException.html
1236
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFUnsupportedVersionException.png
1237
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFValue-members.html
1238
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFValue.html
1239
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFValue.png
1240
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFWaitForConditionFailedException-members.html
1241
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFWaitForConditionFailedException.html
1242
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFWaitForConditionFailedException.png
1243
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFWriteFailedException-members.html
1244
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFWriteFailedException.html
1245
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFWriteFailedException.png
1246
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFXMLAttribute-members.html
1247
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFXMLAttribute.html
1248
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFXMLAttribute.png
1249
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFXMLCDATA-members.html
1250
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFXMLCDATA.html
1251
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFXMLCDATA.png
1252
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFXMLCharacters-members.html
1253
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFXMLCharacters.html
1254
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFXMLCharacters.png
1255
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFXMLComment-members.html
1256
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFXMLComment.html
1257
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFXMLComment.png
1258
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFXMLElement-members.html
1259
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFXMLElement.html
1260
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFXMLElement.png
1261
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFXMLElementBuilder-members.html
1262
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFXMLElementBuilder.html
1263
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFXMLElementBuilder.png
1264
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFXMLNode-members.html
1265
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFXMLNode.html
1266
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFXMLNode.png
1267
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFXMLParser-members.html
1268
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFXMLParser.html
1269
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFXMLParser.png
1270
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFXMLProcessingInstruction-members.html
1271
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFXMLProcessingInstruction.html
1272
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFXMLProcessingInstruction.png
1273
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFZIPArchive-members.html
1274
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFZIPArchive.html
1275
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFZIPArchive.png
1276
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFZIPArchiveEntry-members.html
1277
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFZIPArchiveEntry.html
1278
%%PORTDOCS%%%%DOCSDIR%%/objfw/interfaceOFZIPArchiveEntry.png
1279
%%PORTDOCS%%%%DOCSDIR%%/objfw/jquery.js
1280
%%PORTDOCS%%%%DOCSDIR%%/objfw/macros_8h_source.html
1281
%%PORTDOCS%%%%DOCSDIR%%/objfw/menu.js
1282
%%PORTDOCS%%%%DOCSDIR%%/objfw/menudata.js
1283
%%PORTDOCS%%%%DOCSDIR%%/objfw/nav_f.png
1284
%%PORTDOCS%%%%DOCSDIR%%/objfw/nav_fd.png
1285
%%PORTDOCS%%%%DOCSDIR%%/objfw/nav_g.png
1286
%%PORTDOCS%%%%DOCSDIR%%/objfw/nav_h.png
1287
%%PORTDOCS%%%%DOCSDIR%%/objfw/nav_hd.png
1288
%%PORTDOCS%%%%DOCSDIR%%/objfw/objfw-defs_8h_source.html
1289
%%PORTDOCS%%%%DOCSDIR%%/objfw/open.png
1290
%%PORTDOCS%%%%DOCSDIR%%/objfw/platform_8h_source.html
1291
%%PORTDOCS%%%%DOCSDIR%%/objfw/private_8h_source.html
1292
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFApplicationDelegate-p-members.html
1293
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFApplicationDelegate-p.html
1294
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFApplicationDelegate-p.png
1295
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFArchiveEntry-p-members.html
1296
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFArchiveEntry-p.html
1297
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFArchiveEntry-p.png
1298
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFCollection-p-members.html
1299
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFCollection-p.html
1300
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFCollection-p.png
1301
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFComparing-p-members.html
1302
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFComparing-p.html
1303
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFComparing-p.png
1304
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFCopying-p-members.html
1305
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFCopying-p.html
1306
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFCopying-p.png
1307
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFCryptographicHash-p-members.html
1308
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFCryptographicHash-p.html
1309
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFCryptographicHash-p.png
1310
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFDDPSocketDelegate-p-members.html
1311
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFDDPSocketDelegate-p.html
1312
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFDDPSocketDelegate-p.png
1313
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFDNSResolverQueryDelegate-p-members.html
1314
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFDNSResolverQueryDelegate-p.html
1315
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFDNSResolverQueryDelegate-p.png
1316
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFDatagramSocketDelegate-p-members.html
1317
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFDatagramSocketDelegate-p.html
1318
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFDatagramSocketDelegate-p.png
1319
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFEnumeration-p-members.html
1320
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFEnumeration-p.html
1321
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFEnumeration-p.png
1322
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFFastEnumeration-p-members.html
1323
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFFastEnumeration-p.html
1324
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFFastEnumeration-p.png
1325
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFHTTPClientDelegate-p-members.html
1326
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFHTTPClientDelegate-p.html
1327
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFHTTPClientDelegate-p.png
1328
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFHTTPServerDelegate-p-members.html
1329
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFHTTPServerDelegate-p.html
1330
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFHTTPServerDelegate-p.png
1331
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFIPXSocketDelegate-p-members.html
1332
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFIPXSocketDelegate-p.html
1333
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFIPXSocketDelegate-p.png
1334
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFJSONRepresentation-p-members.html
1335
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFJSONRepresentation-p.html
1336
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFJSONRepresentation-p.png
1337
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFKernelEventObserverDelegate-p-members.html
1338
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFKernelEventObserverDelegate-p.html
1339
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFKernelEventObserverDelegate-p.png
1340
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFKeyValueCoding-p-members.html
1341
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFKeyValueCoding-p.html
1342
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFLocking-p-members.html
1343
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFLocking-p.html
1344
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFLocking-p.png
1345
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFMessagePackRepresentation-p-members.html
1346
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFMessagePackRepresentation-p.html
1347
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFMessagePackRepresentation-p.png
1348
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFMutableArchiveEntry-p-members.html
1349
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFMutableArchiveEntry-p.html
1350
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFMutableArchiveEntry-p.png
1351
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFMutableCopying-p-members.html
1352
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFMutableCopying-p.html
1353
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFMutableCopying-p.png
1354
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFObject-p-members.html
1355
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFObject-p.html
1356
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFObject-p.png
1357
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFReadyForReadingObserving-p-members.html
1358
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFReadyForReadingObserving-p.html
1359
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFReadyForReadingObserving-p.png
1360
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFReadyForWritingObserving-p-members.html
1361
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFReadyForWritingObserving-p.html
1362
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFReadyForWritingObserving-p.png
1363
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFSPXSocketDelegate-p-members.html
1364
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFSPXSocketDelegate-p.html
1365
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFSPXSocketDelegate-p.png
1366
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFSPXStreamSocketDelegate-p-members.html
1367
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFSPXStreamSocketDelegate-p.html
1368
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFSPXStreamSocketDelegate-p.png
1369
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFSequencedPacketSocketDelegate-p-members.html
1370
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFSequencedPacketSocketDelegate-p.html
1371
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFSequencedPacketSocketDelegate-p.png
1372
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFStreamDelegate-p-members.html
1373
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFStreamDelegate-p.html
1374
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFStreamDelegate-p.png
1375
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFStreamSocketDelegate-p-members.html
1376
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFStreamSocketDelegate-p.html
1377
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFStreamSocketDelegate-p.png
1378
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFStringXMLUnescapingDelegate-p-members.html
1379
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFStringXMLUnescapingDelegate-p.html
1380
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFStringXMLUnescapingDelegate-p.png
1381
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFTCPSocketDelegate-p-members.html
1382
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFTCPSocketDelegate-p.html
1383
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFTCPSocketDelegate-p.png
1384
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFTLSStreamDelegate-p-members.html
1385
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFTLSStreamDelegate-p.html
1386
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFTLSStreamDelegate-p.png
1387
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFUDPSocketDelegate-p-members.html
1388
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFUDPSocketDelegate-p.html
1389
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFUDPSocketDelegate-p.png
1390
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFUNIXDatagramSocketDelegate-p-members.html
1391
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFUNIXDatagramSocketDelegate-p.html
1392
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFUNIXDatagramSocketDelegate-p.png
1393
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFUNIXStreamSocketDelegate-p-members.html
1394
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFUNIXStreamSocketDelegate-p.html
1395
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFUNIXStreamSocketDelegate-p.png
1396
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFXMLElementBuilderDelegate-p-members.html
1397
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFXMLElementBuilderDelegate-p.html
1398
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFXMLElementBuilderDelegate-p.png
1399
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFXMLParserDelegate-p-members.html
1400
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFXMLParserDelegate-p.html
1401
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFXMLParserDelegate-p.png
1402
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFZIPArchiveDelegate-p-members.html
1403
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFZIPArchiveDelegate-p.html
1404
%%PORTDOCS%%%%DOCSDIR%%/objfw/protocolOFZIPArchiveDelegate-p.png
1405
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/all_0.js
1406
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/all_1.js
1407
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/all_10.js
1408
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/all_11.js
1409
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/all_12.js
1410
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/all_13.js
1411
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/all_14.js
1412
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/all_15.js
1413
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/all_16.js
1414
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/all_17.js
1415
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/all_18.js
1416
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/all_19.js
1417
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/all_1a.js
1418
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/all_2.js
1419
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/all_3.js
1420
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/all_4.js
1421
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/all_5.js
1422
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/all_6.js
1423
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/all_7.js
1424
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/all_8.js
1425
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/all_9.js
1426
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/all_a.js
1427
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/all_b.js
1428
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/all_c.js
1429
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/all_d.js
1430
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/all_e.js
1431
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/all_f.js
1432
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/classes_0.js
1433
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/close.svg
1434
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/defines_0.js
1435
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/defines_1.js
1436
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/defines_2.js
1437
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/enums_0.js
1438
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/enumvalues_0.js
1439
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/files_0.js
1440
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/functions_0.js
1441
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/functions_1.js
1442
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/functions_10.js
1443
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/functions_11.js
1444
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/functions_12.js
1445
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/functions_13.js
1446
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/functions_14.js
1447
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/functions_15.js
1448
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/functions_16.js
1449
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/functions_17.js
1450
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/functions_18.js
1451
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/functions_19.js
1452
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/functions_1a.js
1453
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/functions_2.js
1454
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/functions_3.js
1455
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/functions_4.js
1456
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/functions_5.js
1457
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/functions_6.js
1458
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/functions_7.js
1459
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/functions_8.js
1460
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/functions_9.js
1461
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/functions_a.js
1462
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/functions_b.js
1463
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/functions_c.js
1464
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/functions_d.js
1465
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/functions_e.js
1466
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/functions_f.js
1467
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/mag.svg
1468
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/mag_d.svg
1469
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/mag_sel.svg
1470
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/mag_seld.svg
1471
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/properties_0.js
1472
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/properties_1.js
1473
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/properties_10.js
1474
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/properties_11.js
1475
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/properties_12.js
1476
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/properties_13.js
1477
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/properties_14.js
1478
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/properties_15.js
1479
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/properties_16.js
1480
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/properties_17.js
1481
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/properties_18.js
1482
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/properties_2.js
1483
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/properties_3.js
1484
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/properties_4.js
1485
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/properties_5.js
1486
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/properties_6.js
1487
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/properties_7.js
1488
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/properties_8.js
1489
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/properties_9.js
1490
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/properties_a.js
1491
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/properties_b.js
1492
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/properties_c.js
1493
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/properties_d.js
1494
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/properties_e.js
1495
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/properties_f.js
1496
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/search.css
1497
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/search.js
1498
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/searchdata.js
1499
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/typedefs_0.js
1500
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/typedefs_1.js
1501
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/typedefs_2.js
1502
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/typedefs_3.js
1503
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/typedefs_4.js
1504
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/typedefs_5.js
1505
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/variables_0.js
1506
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/variables_1.js
1507
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/variables_10.js
1508
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/variables_2.js
1509
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/variables_3.js
1510
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/variables_4.js
1511
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/variables_5.js
1512
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/variables_6.js
1513
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/variables_7.js
1514
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/variables_8.js
1515
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/variables_9.js
1516
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/variables_a.js
1517
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/variables_b.js
1518
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/variables_c.js
1519
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/variables_d.js
1520
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/variables_e.js
1521
%%PORTDOCS%%%%DOCSDIR%%/objfw/search/variables_f.js
1522
%%PORTDOCS%%%%DOCSDIR%%/objfw/splitbar.png
1523
%%PORTDOCS%%%%DOCSDIR%%/objfw/splitbard.png
1524
%%PORTDOCS%%%%DOCSDIR%%/objfw/structOFFastEnumerationState-members.html
1525
%%PORTDOCS%%%%DOCSDIR%%/objfw/structOFFastEnumerationState.html
1526
%%PORTDOCS%%%%DOCSDIR%%/objfw/structOFHTTPRequestProtocolVersion-members.html
1527
%%PORTDOCS%%%%DOCSDIR%%/objfw/structOFHTTPRequestProtocolVersion.html
1528
%%PORTDOCS%%%%DOCSDIR%%/objfw/structOFListItem.html
1529
%%PORTDOCS%%%%DOCSDIR%%/objfw/structOFMapTableFunctions-members.html
1530
%%PORTDOCS%%%%DOCSDIR%%/objfw/structOFMapTableFunctions.html
1531
%%PORTDOCS%%%%DOCSDIR%%/objfw/structOFOptionsParserOption-members.html
1532
%%PORTDOCS%%%%DOCSDIR%%/objfw/structOFOptionsParserOption.html
1533
%%PORTDOCS%%%%DOCSDIR%%/objfw/structOFPBKDF2Parameters-members.html
1534
%%PORTDOCS%%%%DOCSDIR%%/objfw/structOFPBKDF2Parameters.html
1535
%%PORTDOCS%%%%DOCSDIR%%/objfw/structOFPoint-members.html
1536
%%PORTDOCS%%%%DOCSDIR%%/objfw/structOFPoint.html
1537
%%PORTDOCS%%%%DOCSDIR%%/objfw/structOFRange-members.html
1538
%%PORTDOCS%%%%DOCSDIR%%/objfw/structOFRange.html
1539
%%PORTDOCS%%%%DOCSDIR%%/objfw/structOFRect-members.html
1540
%%PORTDOCS%%%%DOCSDIR%%/objfw/structOFRect.html
1541
%%PORTDOCS%%%%DOCSDIR%%/objfw/structOFScryptParameters-members.html
1542
%%PORTDOCS%%%%DOCSDIR%%/objfw/structOFScryptParameters.html
1543
%%PORTDOCS%%%%DOCSDIR%%/objfw/structOFSize-members.html
1544
%%PORTDOCS%%%%DOCSDIR%%/objfw/structOFSize.html
1545
%%PORTDOCS%%%%DOCSDIR%%/objfw/structOFSocketAddress-members.html
1546
%%PORTDOCS%%%%DOCSDIR%%/objfw/structOFSocketAddress.html
1547
%%PORTDOCS%%%%DOCSDIR%%/objfw/structOFVector3D-members.html
1548
%%PORTDOCS%%%%DOCSDIR%%/objfw/structOFVector3D.html
1549
%%PORTDOCS%%%%DOCSDIR%%/objfw/structOFVector4D-members.html
1550
%%PORTDOCS%%%%DOCSDIR%%/objfw/structOFVector4D.html
1551
%%PORTDOCS%%%%DOCSDIR%%/objfw/structobjc__class-members.html
1552
%%PORTDOCS%%%%DOCSDIR%%/objfw/structobjc__class.html
1553
%%PORTDOCS%%%%DOCSDIR%%/objfw/structobjc__object-members.html
1554
%%PORTDOCS%%%%DOCSDIR%%/objfw/structobjc__object.html
1555
%%PORTDOCS%%%%DOCSDIR%%/objfw/structobjc__super-members.html
1556
%%PORTDOCS%%%%DOCSDIR%%/objfw/structobjc__super.html
1557
%%PORTDOCS%%%%DOCSDIR%%/objfw/sync_off.png
1558
%%PORTDOCS%%%%DOCSDIR%%/objfw/sync_on.png
1559
%%PORTDOCS%%%%DOCSDIR%%/objfw/tab_a.png
1560
%%PORTDOCS%%%%DOCSDIR%%/objfw/tab_ad.png
1561
%%PORTDOCS%%%%DOCSDIR%%/objfw/tab_b.png
1562
%%PORTDOCS%%%%DOCSDIR%%/objfw/tab_bd.png
1563
%%PORTDOCS%%%%DOCSDIR%%/objfw/tab_h.png
1564
%%PORTDOCS%%%%DOCSDIR%%/objfw/tab_hd.png
1565
%%PORTDOCS%%%%DOCSDIR%%/objfw/tab_s.png
1566
%%PORTDOCS%%%%DOCSDIR%%/objfw/tab_sd.png
1567
%%PORTDOCS%%%%DOCSDIR%%/objfw/tabs.css
1568
%%PORTDOCS%%%%DOCSDIR%%/objfw/unicode_8h_source.html
1569
%%PORTDOCS%%%%DOCSDIR%%/objfw/unistd__wrapper_8h_source.html
1570
share/ofarc/localization/de.json
1571
share/ofarc/localization/localizations.json
1572
share/ofdns/localization/de.json
1573
share/ofdns/localization/localizations.json
1574
share/ofhash/localization/de.json
1575
share/ofhash/localization/localizations.json
1576
share/ofhttp/localization/de.json
1577
share/ofhttp/localization/localizations.json

Return to bug 273835