Index: src/OFAAAADNSResourceRecord.h ================================================================== --- src/OFAAAADNSResourceRecord.h +++ src/OFAAAADNSResourceRecord.h @@ -20,12 +20,11 @@ #import "OFDNSResourceRecord.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFAAAADNSResourceRecord \ - * OFDNSResourceRecord.h ObjFW/OFDNSResourceRecord.h + * @class OFAAAADNSResourceRecord OFAAAADNSResourceRecord.h ObjFW/ObjFW.h * * @brief A class representing a DNS resource record. */ OF_SUBCLASSING_RESTRICTED @interface OFAAAADNSResourceRecord: OFDNSResourceRecord Index: src/OFADNSResourceRecord.h ================================================================== --- src/OFADNSResourceRecord.h +++ src/OFADNSResourceRecord.h @@ -20,11 +20,11 @@ #import "OFDNSResourceRecord.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFADNSResourceRecord OFDNSResourceRecord.h ObjFW/OFDNSResourceRecord.h + * @class OFADNSResourceRecord OFADNSResourceRecord.h ObjFW/ObjFW.h * * @brief A class representing an A DNS resource record. */ OF_SUBCLASSING_RESTRICTED @interface OFADNSResourceRecord: OFDNSResourceRecord Index: src/OFApplication.h ================================================================== --- src/OFApplication.h +++ src/OFApplication.h @@ -109,11 +109,11 @@ #ifdef OF_HAVE_PLEDGE # define OF_HAVE_SANDBOX #endif /** - * @protocol OFApplicationDelegate OFApplication.h ObjFW/OFApplication.h + * @protocol OFApplicationDelegate OFApplication.h ObjFW/ObjFW.h * * @brief A protocol for delegates of OFApplication. * * @note Signals are not available on AmigaOS! */ @@ -188,11 +188,11 @@ - (void)applicationDidReceiveSIGUSR2; #endif @end /** - * @class OFApplication OFApplication.h ObjFW/OFApplication.h + * @class OFApplication OFApplication.h ObjFW/ObjFW.h * * @brief A class which represents the application as an object. * * In order to create a new OFApplication, you should create a class conforming * to the optional @ref OFApplicationDelegate protocol and put Index: src/OFArchiveEntry.h ================================================================== --- src/OFArchiveEntry.h +++ src/OFArchiveEntry.h @@ -24,11 +24,11 @@ @class OFDate; @class OFNumber; /** - * @protocol OFArchiveEntry OFArchiveEntry.h ObjFW/OFArchiveEntry.h + * @protocol OFArchiveEntry OFArchiveEntry.h ObjFW/ObjFW.h * * @brief A class which represents an entry in an archive. */ @protocol OFArchiveEntry Index: src/OFArray.h ================================================================== --- src/OFArray.h +++ src/OFArray.h @@ -96,11 +96,11 @@ */ typedef id _Nullable (^OFArrayFoldBlock)(id _Nullable left, id right); #endif /** - * @class OFArray OFArray.h ObjFW/OFArray.h + * @class OFArray OFArray.h ObjFW/ObjFW.h * * @brief An abstract class for storing objects in an array. * * @note Subclasses must implement @ref count and @ref objectAtIndex:. */ Index: src/OFBlock.h ================================================================== --- src/OFBlock.h +++ src/OFBlock.h @@ -20,11 +20,11 @@ #import "OFObject.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFBlock OFBlock.h ObjFW/OFBlock.h + * @class OFBlock OFBlock.h ObjFW/ObjFW.h * * @brief The class for all blocks, since all blocks are also objects. */ @interface OFBlock: OFObject + (instancetype)alloc OF_UNAVAILABLE; Index: src/OFCNAMEDNSResourceRecord.h ================================================================== --- src/OFCNAMEDNSResourceRecord.h +++ src/OFCNAMEDNSResourceRecord.h @@ -20,12 +20,11 @@ #import "OFDNSResourceRecord.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFCNAMEDNSResourceRecord \ - * OFDNSResourceRecord.h ObjFW/OFDNSResourceRecord.h + * @class OFCNAMEDNSResourceRecord OFCNAMEDNSResourceRecord.h ObjFW/ObjFW.h * * @brief A class representing a CNAME DNS resource record. */ OF_SUBCLASSING_RESTRICTED @interface OFCNAMEDNSResourceRecord: OFDNSResourceRecord Index: src/OFCharacterSet.h ================================================================== --- src/OFCharacterSet.h +++ src/OFCharacterSet.h @@ -21,11 +21,11 @@ #import "OFString.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFCharacterSet OFCharacterSet.h ObjFW/OFCharacterSet.h + * @class OFCharacterSet OFCharacterSet.h ObjFW/ObjFW.h * * @brief A class cluster representing a character set. * * @note Subclasses must implement @ref characterIsMember:. */ Index: src/OFCollection.h ================================================================== --- src/OFCollection.h +++ src/OFCollection.h @@ -20,11 +20,11 @@ #import "OFEnumerator.h" OF_ASSUME_NONNULL_BEGIN /** - * @protocol OFCollection OFCollection.h ObjFW/OFCollection.h + * @protocol OFCollection OFCollection.h ObjFW/ObjFW.h * * @brief A protocol with methods common for all collections. */ @protocol OFCollection /** Index: src/OFColor.h ================================================================== --- src/OFColor.h +++ src/OFColor.h @@ -20,11 +20,11 @@ #import "OFObject.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFColor OFColor.h ObjFW/OFColor.h + * @class OFColor OFColor.h ObjFW/ObjFW.h * * @brief A class for storing a color. */ @interface OFColor: OFObject #ifdef OF_HAVE_CLASS_PROPERTIES Index: src/OFCondition.h ================================================================== --- src/OFCondition.h +++ src/OFCondition.h @@ -23,11 +23,11 @@ OF_ASSUME_NONNULL_BEGIN @class OFDate; /** - * @class OFCondition OFCondition.h ObjFW/OFCondition.h + * @class OFCondition OFCondition.h ObjFW/ObjFW.h * * @brief A class implementing a condition variable for thread synchronization. */ OF_SUBCLASSING_RESTRICTED @interface OFCondition: OFMutex Index: src/OFConstantString.h ================================================================== --- src/OFConstantString.h +++ src/OFConstantString.h @@ -31,11 +31,11 @@ } # endif #endif /** - * @class OFConstantString OFConstantString.h ObjFW/OFConstantString.h + * @class OFConstantString OFConstantString.h ObjFW/ObjFW.h * * @brief A class for storing constant strings using the `@""` literal. */ OF_SUBCLASSING_RESTRICTED @interface OFConstantString: OFString Index: src/OFCountedSet.h ================================================================== --- src/OFCountedSet.h +++ src/OFCountedSet.h @@ -35,11 +35,11 @@ typedef void (^OFCountedSetEnumerationBlock)(id object, size_t count, bool *stop); #endif /** - * @class OFCountedSet OFCountedSet.h ObjFW/OFCountedSet.h + * @class OFCountedSet OFCountedSet.h ObjFW/ObjFW.h * * @brief An abstract class for a mutable unordered set of objects, counting how * often it contains an object. * * @note Subclasses must implement @ref countForObject: as well as all methods Index: src/OFCryptographicHash.h ================================================================== --- src/OFCryptographicHash.h +++ src/OFCryptographicHash.h @@ -20,12 +20,11 @@ #import "OFObject.h" OF_ASSUME_NONNULL_BEGIN /** - * @protocol OFCryptographicHash \ - * OFCryptographicHash.h ObjFW/OFCryptographicHash.h + * @protocol OFCryptographicHash OFCryptographicHash.h ObjFW/ObjFW.h * * @brief A protocol for classes providing cryptographic hash functions. * * A cryptographic hash implementing this protocol can be copied. The entire * state is copied, allowing to calculate a new hash from there. This is Index: src/OFDDPSocket.h ================================================================== --- src/OFDDPSocket.h +++ src/OFDDPSocket.h @@ -23,19 +23,19 @@ @class OFString; @class OFDictionary OF_GENERIC(KeyType, ObjectType); /** - * @protocol OFDDPSocketDelegate OFDDPSocket.h ObjFW/OFDDPSocket.h + * @protocol OFDDPSocketDelegate OFDDPSocket.h ObjFW/ObjFW.h * * @brief A delegate for OFDDPSocket. */ @protocol OFDDPSocketDelegate @end /** - * @class OFDDPSocket OFDDPSocket.h ObjFW/OFDDPSocket.h + * @class OFDDPSocket OFDDPSocket.h ObjFW/ObjFW.h * * @brief A class which provides methods to create and use AppleTalk DDP * sockets. * * Addresses are of type @ref OFSocketAddress. You can use Index: src/OFDNSQuery.h ================================================================== --- src/OFDNSQuery.h +++ src/OFDNSQuery.h @@ -23,11 +23,11 @@ OF_ASSUME_NONNULL_BEGIN @class OFString; /** - * @class OFDNSQuery OFDNSQuery.h ObjFW/OFDNSQuery.h + * @class OFDNSQuery OFDNSQuery.h ObjFW/ObjFW.h * * @brief A class representing a DNS query. */ OF_SUBCLASSING_RESTRICTED @interface OFDNSQuery: OFObject Index: src/OFDNSResolver.h ================================================================== --- src/OFDNSResolver.h +++ src/OFDNSResolver.h @@ -40,11 +40,11 @@ @class OFPair OF_GENERIC(FirstType, SecondType); @class OFTCPSocket; @class OFUDPSocket; /** - * @enum OFDNSResolverErrorCode OFDNSResolver.h ObjFW/OFDNSResolver.h + * @enum OFDNSResolverErrorCode OFDNSResolver.h ObjFW/ObjFW.h * * @brief An enum describing why resolving a host failed. */ typedef enum { /** An unknown error */ @@ -73,11 +73,11 @@ /** There was no name server to query */ OFDNSResolverErrorCodeNoNameServer } OFDNSResolverErrorCode; /** - * @protocol OFDNSResolverQueryDelegate OFDNSResolver.h ObjFW/OFDNSResolver.h + * @protocol OFDNSResolverQueryDelegate OFDNSResolver.h ObjFW/ObjFW.h * * @brief A delegate for performed DNS queries. */ @protocol OFDNSResolverQueryDelegate /** @@ -94,11 +94,11 @@ response: (nullable OFDNSResponse *)response exception: (nullable id)exception; @end /** - * @protocol OFDNSResolverQueryDelegate OFDNSResolver.h ObjFW/OFDNSResolver.h + * @protocol OFDNSResolverQueryDelegate OFDNSResolver.h ObjFW/ObjFW.h * * @brief A delegate for resolved hosts. */ @protocol OFDNSResolverHostDelegate /** @@ -116,11 +116,11 @@ addresses: (nullable OFData *)addresses exception: (nullable id)exception; @end /** - * @class OFDNSResolver OFDNSResolver.h ObjFW/OFDNSResolver.h + * @class OFDNSResolver OFDNSResolver.h ObjFW/ObjFW.h * * @brief A class for resolving DNS names. * * @note If you change any of the properties, make sure to set * @ref configReloadInterval to 0, as otherwise your changes will be Index: src/OFDNSResourceRecord.h ================================================================== --- src/OFDNSResourceRecord.h +++ src/OFDNSResourceRecord.h @@ -71,11 +71,11 @@ /** URI */ OFDNSRecordTypeURI = 256, } OFDNSRecordType; /** - * @class OFDNSResourceRecord OFDNSResourceRecord.h ObjFW/OFDNSResourceRecord.h + * @class OFDNSResourceRecord OFDNSResourceRecord.h ObjFW/ObjFW.h * * @brief A class representing a DNS resource record. */ @interface OFDNSResourceRecord: OFObject { Index: src/OFDNSResponse.h ================================================================== --- src/OFDNSResponse.h +++ src/OFDNSResponse.h @@ -27,11 +27,11 @@ typedef OFDictionary OF_GENERIC(OFString *, OFArray OF_GENERIC( OF_KINDOF(OFDNSResourceRecord *)) *) *OFDNSResponseRecords; /** - * @class OFDNSResponse OFDNSResponse.h ObjFW/OFDNSResponse.h + * @class OFDNSResponse OFDNSResponse.h ObjFW/ObjFW.h * * @brief A class storing a response from @ref OFDNSResolver. */ OF_SUBCLASSING_RESTRICTED @interface OFDNSResponse: OFObject Index: src/OFData.h ================================================================== --- src/OFData.h +++ src/OFData.h @@ -36,11 +36,11 @@ /** Search backwards in the data */ OFDataSearchBackwards = 1 } OFDataSearchOptions; /** - * @class OFData OFData.h ObjFW/OFData.h + * @class OFData OFData.h ObjFW/ObjFW.h * * @brief A class for storing arbitrary data in an array. */ @interface OFData: OFObject Index: src/OFDatagramSocket.h ================================================================== --- src/OFDatagramSocket.h +++ src/OFDatagramSocket.h @@ -52,12 +52,11 @@ typedef OFData *_Nullable (^OFDatagramSocketAsyncSendDataBlock)( id _Nullable exception); #endif /** - * @protocol OFDatagramSocketDelegate OFDatagramSocket.h \ - * ObjFW/OFDatagramSocket.h + * @protocol OFDatagramSocketDelegate OFDatagramSocket.h ObjFW/ObjFW.h * * @brief A delegate for OFDatagramSocket. */ @protocol OFDatagramSocketDelegate @optional @@ -92,11 +91,11 @@ receiver: (const OFSocketAddress *_Nonnull)receiver exception: (nullable id)exception; @end /** - * @class OFDatagramSocket OFDatagramSocket.h ObjFW/OFDatagramSocket.h + * @class OFDatagramSocket OFDatagramSocket.h ObjFW/ObjFW.h * * @brief A base class for datagram sockets. * * @warning Even though the OFCopying protocol is implemented, it does *not* * return an independent copy of the socket, but instead retains it. Index: src/OFDate.h ================================================================== --- src/OFDate.h +++ src/OFDate.h @@ -24,11 +24,11 @@ @class OFString; @class OFConstantString; /** - * @class OFDate OFDate.h ObjFW/OFDate.h + * @class OFDate OFDate.h ObjFW/ObjFW.h * * @brief A class for storing, accessing and comparing dates. */ @interface OFDate: OFObject Index: src/OFDictionary.h ================================================================== --- src/OFDictionary.h +++ src/OFDictionary.h @@ -65,11 +65,11 @@ */ typedef id _Nonnull (^OFDictionaryMapBlock)(id key, id object); #endif /** - * @class OFDictionary OFDictionary.h ObjFW/OFDictionary.h + * @class OFDictionary OFDictionary.h ObjFW/ObjFW.h * * @brief An abstract class for storing objects in a dictionary. * * Keys are copied and thus must conform to the OFCopying protocol. * Index: src/OFEnumerator.h ================================================================== --- src/OFEnumerator.h +++ src/OFEnumerator.h @@ -23,11 +23,11 @@ @class OFArray OF_GENERIC(ObjectType); @class OFEnumerator OF_GENERIC(ObjectType); /** - * @protocol OFEnumeration OFEnumerator.h ObjFW/OFEnumerator.h + * @protocol OFEnumeration OFEnumerator.h ObjFW/ObjFW.h * * @brief A protocol for getting an enumerator for the object. * * If the class conforming to OFEnumeration is using lightweight generics, the * only method, @ref objectEnumerator, should be overridden to use lightweight @@ -48,11 +48,11 @@ * * We need this bad check to see if we already imported Cocoa, which defines * this as well. */ /** - * @struct OFFastEnumerationState OFEnumerator.h ObjFW/OFEnumerator.h + * @struct OFFastEnumerationState OFEnumerator.h ObjFW/ObjFW.h * * @brief State information for fast enumerations. */ typedef struct { /** Arbitrary state information for the enumeration */ @@ -67,11 +67,11 @@ #ifndef NSINTEGER_DEFINED typedef OFFastEnumerationState NSFastEnumerationState; #endif /** - * @protocol OFFastEnumeration OFEnumerator.h ObjFW/OFEnumerator.h + * @protocol OFFastEnumeration OFEnumerator.h ObjFW/ObjFW.h * * @brief A protocol for fast enumeration. * * The OFFastEnumeration protocol needs to be implemented by all classes * supporting fast enumeration. @@ -94,11 +94,11 @@ objects count: (int)count; @end /** - * @class OFEnumerator OFEnumerator.h ObjFW/OFEnumerator.h + * @class OFEnumerator OFEnumerator.h ObjFW/ObjFW.h * * @brief A class which provides methods to enumerate through collections. */ @interface OFEnumerator OF_GENERIC(ObjectType): OFObject #if !defined(OF_HAVE_GENERICS) && !defined(DOXYGEN) Index: src/OFFile.h ================================================================== --- src/OFFile.h +++ src/OFFile.h @@ -30,11 +30,11 @@ #endif OF_ASSUME_NONNULL_BEGIN /** - * @class OFFile OFFile.h ObjFW/OFFile.h + * @class OFFile OFFile.h ObjFW/ObjFW.h * * @brief A class which provides methods to read and write files. */ OF_SUBCLASSING_RESTRICTED @interface OFFile: OFSeekableStream Index: src/OFFileManager.h ================================================================== --- src/OFFileManager.h +++ src/OFFileManager.h @@ -261,11 +261,11 @@ #ifdef __cplusplus } #endif /** - * @class OFFileManager OFFileManager.h ObjFW/OFFileManager.h + * @class OFFileManager OFFileManager.h ObjFW/ObjFW.h * * @brief A class which provides management for files, e.g. reading contents of * directories, deleting files, renaming files, etc. */ #ifndef OF_FILE_MANAGER_M Index: src/OFGZIPStream.h ================================================================== --- src/OFGZIPStream.h +++ src/OFGZIPStream.h @@ -44,11 +44,11 @@ OFGZIPStreamOperatingSystemAcornRISCOS = 13, OFGZIPStreamOperatingSystemUnknown = 255 } OFGZIPStreamOperatingSystem; /** - * @class OFGZIPStream OFGZIPStream.h ObjFW/OFGZIPStream.h + * @class OFGZIPStream OFGZIPStream.h ObjFW/ObjFW.h * * @brief A class that handles GZIP compression and decompression transparently * for an underlying stream. */ OF_SUBCLASSING_RESTRICTED Index: src/OFHINFODNSResourceRecord.h ================================================================== --- src/OFHINFODNSResourceRecord.h +++ src/OFHINFODNSResourceRecord.h @@ -20,12 +20,11 @@ #import "OFDNSResourceRecord.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFHINFODNSResourceRecord \ - * OFDNSResourceRecord.h ObjFW/OFDNSResourceRecord.h + * @class OFHINFODNSResourceRecord OFHINFODNSResourceRecord.h ObjFW/ObjFW.h * * @brief A class representing an HINFO DNS resource record. */ OF_SUBCLASSING_RESTRICTED @interface OFHINFODNSResourceRecord: OFDNSResourceRecord Index: src/OFHMAC.h ================================================================== --- src/OFHMAC.h +++ src/OFHMAC.h @@ -21,11 +21,11 @@ #import "OFCryptographicHash.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFHMAC OFHMAC.h ObjFW/OFHMAC.h + * @class OFHMAC OFHMAC.h ObjFW/ObjFW.h * * @brief A class which provides methods to calculate an HMAC. */ OF_SUBCLASSING_RESTRICTED @interface OFHMAC: OFObject Index: src/OFHTTPClient.h ================================================================== --- src/OFHTTPClient.h +++ src/OFHTTPClient.h @@ -33,11 +33,11 @@ @class OFStream; @class OFTCPSocket; @class OFTLSStream; /** - * @protocol OFHTTPClientDelegate OFHTTPClient.h ObjFW/OFHTTPClient.h + * @protocol OFHTTPClientDelegate OFHTTPClient.h ObjFW/ObjFW.h * * @brief A delegate for OFHTTPClient. */ @protocol OFHTTPClientDelegate /** @@ -142,11 +142,11 @@ request: (OFHTTPRequest *)request response: (OFHTTPResponse *)response; @end /** - * @class OFHTTPClient OFHTTPClient.h ObjFW/OFHTTPClient.h + * @class OFHTTPClient OFHTTPClient.h ObjFW/ObjFW.h * * @brief A class for performing HTTP requests. */ OF_SUBCLASSING_RESTRICTED @interface OFHTTPClient: OFObject Index: src/OFHTTPCookie.h ================================================================== --- src/OFHTTPCookie.h +++ src/OFHTTPCookie.h @@ -27,11 +27,11 @@ @class OFDictionary OF_GENERIC(KeyType, ObjectType); @class OFIRI; @class OFMutableArray OF_GENERIC(ObjectType); /** - * @class OFHTTPCookie OFHTTPCookie.h ObjFW/OFHTTPCookie.h + * @class OFHTTPCookie OFHTTPCookie.h ObjFW/ObjFW.h * * @brief A class for storing and manipulating HTTP cookies. */ OF_SUBCLASSING_RESTRICTED @interface OFHTTPCookie: OFObject Index: src/OFHTTPCookieManager.h ================================================================== --- src/OFHTTPCookieManager.h +++ src/OFHTTPCookieManager.h @@ -25,11 +25,11 @@ @class OFHTTPCookie; @class OFIRI; @class OFMutableArray OF_GENERIC(ObjectType); /** - * @class OFHTTPCookieManager OFHTTPCookieManager.h ObjFW/OFHTTPCookieManager.h + * @class OFHTTPCookieManager OFHTTPCookieManager.h ObjFW/ObjFW.h * * @brief A class for managing cookies for multiple domains. */ OF_SUBCLASSING_RESTRICTED @interface OFHTTPCookieManager: OFObject Index: src/OFHTTPRequest.h ================================================================== --- src/OFHTTPRequest.h +++ src/OFHTTPRequest.h @@ -51,11 +51,11 @@ /** CONNECT */ OFHTTPRequestMethodConnect } OFHTTPRequestMethod; /** - * @struct OFHTTPRequestProtocolVersion OFHTTPRequest.h ObjFW/OFHTTPRequest.h + * @struct OFHTTPRequestProtocolVersion OFHTTPRequest.h ObjFW/ObjFW.h * * @brief The HTTP version of the HTTP request. */ typedef struct OF_BOXABLE OFHTTPRequestProtocolVersion { /** The major of the HTTP version */ @@ -63,11 +63,11 @@ /** The minor of the HTTP version */ unsigned char minor; } OFHTTPRequestProtocolVersion; /** - * @class OFHTTPRequest OFHTTPRequest.h ObjFW/OFHTTPRequest.h + * @class OFHTTPRequest OFHTTPRequest.h ObjFW/ObjFW.h * * @brief A class for storing HTTP requests. */ OF_SUBCLASSING_RESTRICTED @interface OFHTTPRequest: OFObject Index: src/OFHTTPResponse.h ================================================================== --- src/OFHTTPResponse.h +++ src/OFHTTPResponse.h @@ -24,11 +24,11 @@ @class OFDictionary OF_GENERIC(KeyType, ObjectType); @class OFArray OF_GENERIC(ObjectType); /** - * @class OFHTTPResponse OFHTTPResponse.h ObjFW/OFHTTPResponse.h + * @class OFHTTPResponse OFHTTPResponse.h ObjFW/ObjFW.h * * @brief A class for representing an HTTP request response as a stream. */ #if !defined(OF_HTTP_CLIENT_M) && !defined(OF_HTTP_SERVER_M) OF_SUBCLASSING_RESTRICTED Index: src/OFHTTPServer.h ================================================================== --- src/OFHTTPServer.h +++ src/OFHTTPServer.h @@ -31,11 +31,11 @@ @class OFHTTPServer; @class OFStream; @class OFTCPSocket; /** - * @protocol OFHTTPServerDelegate OFHTTPServer.h ObjFW/OFHTTPServer.h + * @protocol OFHTTPServerDelegate OFHTTPServer.h ObjFW/ObjFW.h * * @brief A delegate for OFHTTPServer. */ @protocol OFHTTPServerDelegate /** @@ -87,11 +87,11 @@ request: (OFHTTPRequest *)request exception: (id)exception; @end /** - * @class OFHTTPServer OFHTTPServer.h ObjFW/OFHTTPServer.h + * @class OFHTTPServer OFHTTPServer.h ObjFW/ObjFW.h * * @brief A class for creating a simple HTTP server inside of applications. */ OF_SUBCLASSING_RESTRICTED @interface OFHTTPServer: OFObject Index: src/OFINICategory.h ================================================================== --- src/OFINICategory.h +++ src/OFINICategory.h @@ -24,11 +24,11 @@ @class OFArray OF_GENERIC(ObjectType); @class OFMutableArray OF_GENERIC(ObjectType); @class OFString; /** - * @class OFINICategory OFINICategory.h ObjFW/OFINICategory.h + * @class OFINICategory OFINICategory.h ObjFW/ObjFW.h * * @brief A class for representing a category of an INI file. */ OF_SUBCLASSING_RESTRICTED @interface OFINICategory: OFObject Index: src/OFINIFile.h ================================================================== --- src/OFINIFile.h +++ src/OFINIFile.h @@ -25,11 +25,11 @@ @class OFIRI; @class OFMutableArray OF_GENERIC(ObjectType); /** - * @class OFINIFile OFINIFile.h ObjFW/OFINIFile.h + * @class OFINIFile OFINIFile.h ObjFW/ObjFW.h * * @brief A class for reading, creating and modifying INI files. */ OF_SUBCLASSING_RESTRICTED @interface OFINIFile: OFObject Index: src/OFIPXSocket.h ================================================================== --- src/OFIPXSocket.h +++ src/OFIPXSocket.h @@ -22,19 +22,19 @@ OF_ASSUME_NONNULL_BEGIN @class OFString; /** - * @protocol OFIPXSocketDelegate OFIPXSocket.h ObjFW/OFIPXSocket.h + * @protocol OFIPXSocketDelegate OFIPXSocket.h ObjFW/ObjFW.h * * @brief A delegate for OFIPXSocket. */ @protocol OFIPXSocketDelegate @end /** - * @class OFIPXSocket OFIPXSocket.h ObjFW/OFIPXSocket.h + * @class OFIPXSocket OFIPXSocket.h ObjFW/ObjFW.h * * @brief A class which provides methods to create and use IPX sockets. * * Addresses are of type @ref OFSocketAddress. You can use * @ref OFSocketAddressMakeIPX to create an address or Index: src/OFIRI.h ================================================================== --- src/OFIRI.h +++ src/OFIRI.h @@ -27,11 +27,11 @@ @class OFNumber; @class OFPair OF_GENERIC(FirstType, SecondType); @class OFString; /** - * @class OFIRI OFIRI.h ObjFW/OFIRI.h + * @class OFIRI OFIRI.h ObjFW/ObjFW.h * * @brief A class for representing IRIs, URIs, URLs and URNs, for parsing them * as well as accessing parts of them. * * This class follows RFC 3976 and RFC 3987. Index: src/OFIRIHandler.h ================================================================== --- src/OFIRIHandler.h +++ src/OFIRIHandler.h @@ -28,11 +28,11 @@ @class OFDate; @class OFIRI; @class OFStream; /** - * @class OFIRIHandler OFIRIHandler.h ObjFW/OFIRIHandler.h + * @class OFIRIHandler OFIRIHandler.h ObjFW/ObjFW.h * * @brief A handler for an IRI scheme. */ @interface OFIRIHandler: OFObject { Index: src/OFInflate64Stream.h ================================================================== --- src/OFInflate64Stream.h +++ src/OFInflate64Stream.h @@ -23,11 +23,11 @@ OF_ASSUME_NONNULL_BEGIN #define OFInflate64StreamBufferSize 4096 /** - * @class OFInflate64Stream OFInflate64Stream.h ObjFW/OFInflate64Stream.h + * @class OFInflate64Stream OFInflate64Stream.h ObjFW/ObjFW.h * * @note This class only conforms to OFReadyForReadingObserving if the * underlying stream does so, too. * * @brief A class that handles Deflate decompression transparently for an Index: src/OFInflateStream.h ================================================================== --- src/OFInflateStream.h +++ src/OFInflateStream.h @@ -23,11 +23,11 @@ OF_ASSUME_NONNULL_BEGIN #define OFInflateStreamBufferSize 4096 /** - * @class OFInflateStream OFInflateStream.h ObjFW/OFInflateStream.h + * @class OFInflateStream OFInflateStream.h ObjFW/ObjFW.h * * @note This class only conforms to OFReadyForReadingObserving if the * underlying stream does so, too. * * @brief A class that handles Deflate decompression transparently for an Index: src/OFInvocation.h ================================================================== --- src/OFInvocation.h +++ src/OFInvocation.h @@ -24,11 +24,11 @@ @class OFMethodSignature; @class OFMutableArray OF_GENERIC(ObjectType); @class OFMutableData; /** - * @class OFInvocation OFInvocation.h ObjFW/OFInvocation.h + * @class OFInvocation OFInvocation.h ObjFW/ObjFW.h * * @brief A class for storing and accessing invocations, and invoking them. */ OF_SUBCLASSING_RESTRICTED @interface OFInvocation: OFObject Index: src/OFJSONRepresentation.h ================================================================== --- src/OFJSONRepresentation.h +++ src/OFJSONRepresentation.h @@ -33,12 +33,11 @@ OFJSONRepresentationOptionJSON5 = 0x02, OFJSONRepresentationOptionIsIdentifier = 0x10 } OFJSONRepresentationOptions; /** - * @protocol OFJSONRepresentation - * OFJSONRepresentation.h ObjFW/OFJSONRepresentation.h + * @protocol OFJSONRepresentation OFJSONRepresentation.h ObjFW/ObjFW.h * * @brief A protocol implemented by classes that support encoding to a JSON * representation. * * @warning Although this method can be called directly on classes other than Index: src/OFKernelEventObserver.h ================================================================== --- src/OFKernelEventObserver.h +++ src/OFKernelEventObserver.h @@ -32,12 +32,11 @@ @class OFMutableArray OF_GENERIC(ObjectType); @class OFDate; @class OFMutableData; /** - * @protocol OFKernelEventObserverDelegate - * OFKernelEventObserver.h ObjFW/OFKernelEventObserver.h + * @protocol OFKernelEventObserverDelegate OFKernelEventObserver.h ObjFW/ObjFW.h * * @brief A protocol that needs to be implemented by delegates for * OFKernelEventObserver. */ @protocol OFKernelEventObserverDelegate @@ -74,12 +73,11 @@ - (void)execSignalWasReceived: (ULONG)signalMask; #endif @end /** - * @protocol OFReadyForReadingObserving - * OFKernelEventObserver.h ObjFW/OFKernelEventObserver.h + * @protocol OFReadyForReadingObserving OFKernelEventObserver.h ObjFW/ObjFW.h * * @brief This protocol is implemented by classes which can be observed for * readiness for reading by OFKernelEventObserver. */ @protocol OFReadyForReadingObserving @@ -89,12 +87,11 @@ */ @property (readonly, nonatomic) int fileDescriptorForReading; @end /** - * @protocol OFReadyForWritingObserving - * OFKernelEventObserver.h ObjFW/OFKernelEventObserver.h + * @protocol OFReadyForWritingObserving OFKernelEventObserver.h ObjFW/ObjFW.h * * @brief This protocol is implemented by classes which can be observed for * readiness for writing by OFKernelEventObserver. */ @protocol OFReadyForWritingObserving @@ -105,12 +102,11 @@ @property (readonly, nonatomic) int fileDescriptorForWriting; @end #ifdef OF_HAVE_SOCKETS /** - * @class OFKernelEventObserver - * OFKernelEventObserver.h ObjFW/OFKernelEventObserver.h + * @class OFKernelEventObserver OFKernelEventObserver.h ObjFW/ObjFW.h * * @brief A class that can observe multiple kernel events (e.g. streams being * ready to read) at once. * * @note Currently, Win32 can only observe TCP and UDP sockets! Index: src/OFKeyValueCoding.h ================================================================== --- src/OFKeyValueCoding.h +++ src/OFKeyValueCoding.h @@ -22,11 +22,11 @@ @class OFString; OF_ASSUME_NONNULL_BEGIN /** - * @protocol OFKeyValueCoding OFKeyValueCoding.h ObjFW/OFKeyValueCoding.h + * @protocol OFKeyValueCoding OFKeyValueCoding.h ObjFW/ObjFW.h * * @brief A protocol for Key Value Coding. * * Key Value Coding makes it possible to access properties dynamically using * the interface described by this protocol. Index: src/OFLHAArchive.h ================================================================== --- src/OFLHAArchive.h +++ src/OFLHAArchive.h @@ -25,11 +25,11 @@ @class OFIRI; @class OFStream; /** - * @class OFLHAArchive OFLHAArchive.h ObjFW/OFLHAArchive.h + * @class OFLHAArchive OFLHAArchive.h ObjFW/ObjFW.h * * @brief A class for accessing and manipulating LHA files. */ OF_SUBCLASSING_RESTRICTED @interface OFLHAArchive: OFObject Index: src/OFLHAArchiveEntry.h ================================================================== --- src/OFLHAArchiveEntry.h +++ src/OFLHAArchiveEntry.h @@ -28,11 +28,11 @@ @class OFMutableArray OF_GENERIC(ObjectType); @class OFNumber; @class OFString; /** - * @class OFLHAArchiveEntry OFLHAArchiveEntry.h ObjFW/OFLHAArchiveEntry.h + * @class OFLHAArchiveEntry OFLHAArchiveEntry.h ObjFW/ObjFW.h * * @brief A class which represents an entry in an LHA archive. */ @interface OFLHAArchiveEntry: OFObject Index: src/OFLOCDNSResourceRecord.h ================================================================== --- src/OFLOCDNSResourceRecord.h +++ src/OFLOCDNSResourceRecord.h @@ -20,12 +20,11 @@ #import "OFDNSResourceRecord.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFLOCDNSResourceRecord \ - * OFDNSResourceRecord.h ObjFW/OFDNSResourceRecord.h + * @class OFLOCDNSResourceRecord OFLOCDNSResourceRecord.h ObjFW/ObjFW.h * * @brief A class representing an LOC DNS resource record. */ OF_SUBCLASSING_RESTRICTED @interface OFLOCDNSResourceRecord: OFDNSResourceRecord Index: src/OFList.h ================================================================== --- src/OFList.h +++ src/OFList.h @@ -32,11 +32,11 @@ #ifdef __clang__ # pragma clang diagnostic push # pragma clang diagnostic ignored "-Wdocumentation" #endif /** - * @struct OFListItem OFList.h ObjFW/OFList.h + * @struct OFListItem OFList.h ObjFW/ObjFW.h * * @brief A list item. * * See @ref OFListItemNext, @ref OFListItemPrevious and @ref OFListItemObject. */ @@ -78,11 +78,11 @@ #ifdef __cplusplus } #endif /** - * @class OFList OFList.h ObjFW/OFList.h + * @class OFList OFList.h ObjFW/ObjFW.h * * @brief A class which provides easy to use double-linked lists. */ @interface OFList OF_GENERIC(ObjectType): OFObject #if !defined(OF_HAVE_GENERICS) && !defined(DOXYGEN) Index: src/OFLocale.h ================================================================== --- src/OFLocale.h +++ src/OFLocale.h @@ -43,11 +43,11 @@ @class OFMutableArray OF_GENERIC(ObjectType); @class OFDictionary OF_GENERIC(KeyType, ObjectType); /** - * @class OFLocale OFLocale.h ObjFW/OFLocale.h + * @class OFLocale OFLocale.h ObjFW/ObjFW.h * * @brief A class for querying the locale and retrieving localized strings. */ OF_SUBCLASSING_RESTRICTED @interface OFLocale: OFObject Index: src/OFLocking.h ================================================================== --- src/OFLocking.h +++ src/OFLocking.h @@ -20,11 +20,11 @@ #import "OFObject.h" OF_ASSUME_NONNULL_BEGIN /** - * @protocol OFLocking OFLocking.h ObjFW/OFLocking.h + * @protocol OFLocking OFLocking.h ObjFW/ObjFW.h * * @brief A protocol for locks. */ @protocol OFLocking /** Index: src/OFMD5Hash.h ================================================================== --- src/OFMD5Hash.h +++ src/OFMD5Hash.h @@ -22,11 +22,11 @@ OF_ASSUME_NONNULL_BEGIN @class OFSecureData; /** - * @class OFMD5Hash OFMD5Hash.h ObjFW/OFMD5Hash.h + * @class OFMD5Hash OFMD5Hash.h ObjFW/ObjFW.h * * @brief A class which provides methods to create an MD5 hash. */ OF_SUBCLASSING_RESTRICTED @interface OFMD5Hash: OFObject Index: src/OFMXDNSResourceRecord.h ================================================================== --- src/OFMXDNSResourceRecord.h +++ src/OFMXDNSResourceRecord.h @@ -20,12 +20,11 @@ #import "OFDNSResourceRecord.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFMXDNSResourceRecord \ - * OFDNSResourceRecord.h ObjFW/OFDNSResourceRecord.h + * @class OFMXDNSResourceRecord OFMXDNSResourceRecord.h ObjFW/ObjFW.h * * @brief A class representing an MX DNS resource record. */ OF_SUBCLASSING_RESTRICTED @interface OFMXDNSResourceRecord: OFDNSResourceRecord Index: src/OFMapTable.h ================================================================== --- src/OFMapTable.h +++ src/OFMapTable.h @@ -23,11 +23,11 @@ OF_ASSUME_NONNULL_BEGIN /** @file */ /** - * @struct OFMapTableFunctions OFMapTable.h ObjFW/OFMapTable.h + * @struct OFMapTableFunctions OFMapTable.h ObjFW/ObjFW.h * * @brief A struct describing the functions to be used by the map table. */ typedef struct { /** The function to retain keys / objects */ @@ -65,11 +65,11 @@ #endif @class OFMapTableEnumerator; /** - * @class OFMapTable OFMapTable.h ObjFW/OFMapTable.h + * @class OFMapTable OFMapTable.h ObjFW/ObjFW.h * * @brief A class similar to OFDictionary, but providing more options how keys * and objects should be retained, released, compared and hashed. */ OF_SUBCLASSING_RESTRICTED @@ -228,11 +228,11 @@ - (void)replaceObjectsUsingBlock: (OFMapTableReplaceBlock)block; #endif @end /** - * @class OFMapTableEnumerator OFMapTable.h ObjFW/OFMapTable.h + * @class OFMapTableEnumerator OFMapTable.h ObjFW/ObjFW.h * * @brief A class which provides methods to enumerate through an OFMapTable's * keys or objects. */ #ifndef OF_MAP_TABLE_M Index: src/OFMemoryStream.h ================================================================== --- src/OFMemoryStream.h +++ src/OFMemoryStream.h @@ -20,11 +20,11 @@ #import "OFSeekableStream.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFMemoryStream OFMemoryStream.h ObjFW/OFMemoryStream.h + * @class OFMemoryStream OFMemoryStream.h ObjFW/ObjFW.h * * @brief A seekable stream for reading from and writing to memory. */ OF_SUBCLASSING_RESTRICTED @interface OFMemoryStream: OFSeekableStream Index: src/OFMessagePackExtension.h ================================================================== --- src/OFMessagePackExtension.h +++ src/OFMessagePackExtension.h @@ -23,12 +23,11 @@ OF_ASSUME_NONNULL_BEGIN @class OFData; /** - * @class OFMessagePackExtension \ - * OFMessagePackExtension.h ObjFW/OFMessagePackExtension.h + * @class OFMessagePackExtension OFMessagePackExtension.h ObjFW/ObjFW.h * * @brief A class for representing the MessagePack extension type. */ OF_SUBCLASSING_RESTRICTED @interface OFMessagePackExtension: OFObject Index: src/OFMutableArray.h ================================================================== --- src/OFMutableArray.h +++ src/OFMutableArray.h @@ -33,11 +33,11 @@ */ typedef id _Nonnull (^OFArrayReplaceBlock)(id object, size_t index); #endif /** - * @class OFMutableArray OFArray.h ObjFW/OFArray.h + * @class OFMutableArray OFMutableArray.h ObjFW/ObjFW.h * * @brief An abstract class for storing, adding and removing objects in an * array. * * @note Subclasses must implement @ref insertObject:atIndex:, Index: src/OFMutableData.h ================================================================== --- src/OFMutableData.h +++ src/OFMutableData.h @@ -20,11 +20,11 @@ #import "OFData.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFMutableData OFData.h ObjFW/OFData.h + * @class OFMutableData OFMutableData.h ObjFW/ObjFW.h * * @brief A class for storing and manipulating arbitrary data in an array. */ @interface OFMutableData: OFData /** Index: src/OFMutableDictionary.h ================================================================== --- src/OFMutableDictionary.h +++ src/OFMutableDictionary.h @@ -33,11 +33,11 @@ */ typedef id _Nonnull (^OFDictionaryReplaceBlock)(id key, id object); #endif /** - * @class OFMutableDictionary OFDictionary.h ObjFW/OFDictionary.h + * @class OFMutableDictionary OFMutableDictionary.h ObjFW/ObjFW.h * * @brief An abstract class for storing and changing objects in a dictionary. * * @note Subclasses must implement @ref setObject:forKey:, * @ref removeObjectForKey: as well as all methods of @ref OFDictionary Index: src/OFMutableIRI.h ================================================================== --- src/OFMutableIRI.h +++ src/OFMutableIRI.h @@ -20,11 +20,11 @@ #import "OFIRI.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFMutableIRI OFIRI.h ObjFW/OFIRI.h + * @class OFMutableIRI OFMutableIRI.h ObjFW/ObjFW.h * * @brief A class for representing IRIs, URIs, URLs and URNs, for parsing them, * accessing parts of them as well as modifying them. * * This class follows RFC 3976 and RFC 3987. Index: src/OFMutableLHAArchiveEntry.h ================================================================== --- src/OFMutableLHAArchiveEntry.h +++ src/OFMutableLHAArchiveEntry.h @@ -20,11 +20,11 @@ #import "OFLHAArchiveEntry.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFMutableLHAArchiveEntry OFLHAArchiveEntry.h ObjFW/OFHAArchiveEntry.h + * @class OFMutableLHAArchiveEntry OFMutableLHAArchiveEntry.h ObjFW/ObjFW.h * * @brief A class which represents a mutable entry in an LHA archive. */ @interface OFMutableLHAArchiveEntry: OFLHAArchiveEntry { Index: src/OFMutablePair.h ================================================================== --- src/OFMutablePair.h +++ src/OFMutablePair.h @@ -20,11 +20,11 @@ #import "OFPair.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFMutablePair OFPair.h ObjFW/OFPair.h + * @class OFMutablePair OFMutablePair.h ObjFW/ObjFW.h * * @brief A class for storing a pair of two objects. */ @interface OFMutablePair OF_GENERIC(FirstType, SecondType): OFPair OF_GENERIC(FirstType, SecondType) Index: src/OFMutableSet.h ================================================================== --- src/OFMutableSet.h +++ src/OFMutableSet.h @@ -20,11 +20,11 @@ #import "OFSet.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFMutableSet OFSet.h ObjFW/OFSet.h + * @class OFMutableSet OFMutableSet.h ObjFW/ObjFW.h * * @brief An abstract class for a mutable unordered set of unique objects. * * @note Subclasses must implement @ref addObject:, @ref removeObject: as well * as all methods of @ref OFSet that need to be implemented. Index: src/OFMutableString.h ================================================================== --- src/OFMutableString.h +++ src/OFMutableString.h @@ -20,11 +20,11 @@ #import "OFString.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFMutableString OFString.h ObjFW/OFString.h + * @class OFMutableString OFMutableString.h ObjFW/ObjFW.h * * @brief A class for storing and modifying strings. */ @interface OFMutableString: OFString /** Index: src/OFMutableTarArchiveEntry.h ================================================================== --- src/OFMutableTarArchiveEntry.h +++ src/OFMutableTarArchiveEntry.h @@ -20,11 +20,11 @@ #import "OFTarArchiveEntry.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFMutableTarArchiveEntry OFTarArchiveEntry.h ObjFW/OFTarArchiveEntry.h + * @class OFMutableTarArchiveEntry OFMutableTarArchiveEntry.h ObjFW/ObjFW.h * * @brief A class which represents a mutable entry of a tar archive. */ @interface OFMutableTarArchiveEntry: OFTarArchiveEntry { Index: src/OFMutableTriple.h ================================================================== --- src/OFMutableTriple.h +++ src/OFMutableTriple.h @@ -20,11 +20,11 @@ #import "OFTriple.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFMutableTriple OFTriple.h ObjFW/OFTriple.h + * @class OFMutableTriple OFMutableTriple.h ObjFW/ObjFW.h * * @brief A class for storing a triple of three objects. */ @interface OFMutableTriple OF_GENERIC(FirstType, SecondType, ThirdType): OFTriple OF_GENERIC(FirstType, SecondType, ThirdType) Index: src/OFMutableZIPArchiveEntry.h ================================================================== --- src/OFMutableZIPArchiveEntry.h +++ src/OFMutableZIPArchiveEntry.h @@ -20,11 +20,11 @@ #import "OFZIPArchiveEntry.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFMutableZIPArchiveEntry OFZIPArchiveEntry.h ObjFW/OFZIPArchiveEntry.h + * @class OFMutableZIPArchiveEntry OFMutableZIPArchiveEntry.h ObjFW/ObjFW.h * * @brief A class which represents a mutable entry in the central directory of * a ZIP archive. */ @interface OFMutableZIPArchiveEntry: OFZIPArchiveEntry Index: src/OFMutableZooArchiveEntry.h ================================================================== --- src/OFMutableZooArchiveEntry.h +++ src/OFMutableZooArchiveEntry.h @@ -20,11 +20,11 @@ #import "OFZooArchiveEntry.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFMutableZooArchiveEntry OFZooArchiveEntry.h ObjFW/OFZooArchiveEntry.h + * @class OFMutableZooArchiveEntry OFMutableZooArchiveEntry.h ObjFW/ObjFW.h * * @brief A class which represents a mutable entry in a Zoo archive. */ @interface OFMutableZooArchiveEntry: OFZooArchiveEntry { Index: src/OFMutex.h ================================================================== --- src/OFMutex.h +++ src/OFMutex.h @@ -22,11 +22,11 @@ #import "OFPlainMutex.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFMutex OFMutex.h ObjFW/OFMutex.h + * @class OFMutex OFMutex.h ObjFW/ObjFW.h * * @brief A class for creating mutual exclusions. * * If the mutex is deallocated while being held, it throws an * @ref OFStillLockedException. While this might break ARC's assumption that no Index: src/OFNSDNSResourceRecord.h ================================================================== --- src/OFNSDNSResourceRecord.h +++ src/OFNSDNSResourceRecord.h @@ -20,12 +20,11 @@ #import "OFDNSResourceRecord.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFNSDNSResourceRecord \ - * OFDNSResourceRecord.h ObjFW/OFDNSResourceRecord.h + * @class OFNSDNSResourceRecord OFNSDNSResourceRecord.h ObjFW/ObjFW.h * * @brief A class representing an NS DNS resource record. */ OF_SUBCLASSING_RESTRICTED @interface OFNSDNSResourceRecord: OFDNSResourceRecord Index: src/OFNotification.h ================================================================== --- src/OFNotification.h +++ src/OFNotification.h @@ -30,11 +30,11 @@ * @brief A name for a notification. */ typedef OFConstantString *OFNotificationName; /** - * @class OFNotification OFNotification.h ObjFW/OFNotification.h + * @class OFNotification OFNotification.h ObjFW/ObjFW.h * * @brief A class to represent a notification for or from * @ref OFNotificationCenter. */ @interface OFNotification: OFObject Index: src/OFNotificationCenter.h ================================================================== --- src/OFNotificationCenter.h +++ src/OFNotificationCenter.h @@ -32,12 +32,11 @@ */ typedef void (^OFNotificationCenterBlock)(OFNotification *notification); #endif /** - * @class OFNotificationCenter OFNotificationCenter.h \ - * ObjFW/OFNotificationCenter.h + * @class OFNotificationCenter OFNotificationCenter.h ObjFW/ObjFW.h * * @brief A class to send and register for notifications. */ #ifndef OF_NOTIFICATION_CENTER_M OF_SUBCLASSING_RESTRICTED Index: src/OFNull.h ================================================================== --- src/OFNull.h +++ src/OFNull.h @@ -22,11 +22,11 @@ #import "OFMessagePackRepresentation.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFNull OFNull.h ObjFW/OFNull.h + * @class OFNull OFNull.h ObjFW/ObjFW.h * * @brief A class for representing null values in collections. */ OF_SUBCLASSING_RESTRICTED @interface OFNull: OFObject Index: src/OFObject.h ================================================================== --- src/OFObject.h +++ src/OFObject.h @@ -101,11 +101,11 @@ OFByteOrderNative = OFByteOrderLittleEndian #endif } OFByteOrder; /** - * @struct OFRange OFObject.h ObjFW/OFObject.h + * @struct OFRange OFObject.h ObjFW/ObjFW.h * * @brief A range. */ typedef struct OF_BOXABLE OFRange { /** The start of the range */ @@ -152,11 +152,11 @@ * @brief A time interval in seconds. */ typedef double OFTimeInterval; /** - * @struct OFPoint OFObject.h ObjFW/OFObject.h + * @struct OFPoint OFObject.h ObjFW/ObjFW.h * * @brief A point in 2D space. */ typedef struct OF_BOXABLE OFPoint { /** The x coordinate of the point */ @@ -198,11 +198,11 @@ return true; } /** - * @struct OFSize OFObject.h ObjFW/OFObject.h + * @struct OFSize OFObject.h ObjFW/ObjFW.h * * @brief A size. */ typedef struct OF_BOXABLE OFSize { /** The width of the size */ @@ -244,11 +244,11 @@ return true; } /** - * @struct OFRect OFObject.h ObjFW/OFObject.h + * @struct OFRect OFObject.h ObjFW/ObjFW.h * * @brief A rectangle. */ typedef struct OF_BOXABLE OFRect { /** The point from where the rectangle originates */ @@ -295,11 +295,11 @@ return true; } /** - * @struct OFVector3D OFObject.h ObjFW/OFObject.h + * @struct OFVector3D OFObject.h ObjFW/ObjFW.h * * @brief A vector in 3D space. */ typedef struct OF_BOXABLE OFVector3D { /** The x coordinate of the vector */ @@ -347,11 +347,11 @@ return true; } /** - * @struct OFVector4D OFObject.h ObjFW/OFObject.h + * @struct OFVector4D OFObject.h ObjFW/ObjFW.h * * @brief A vector in 4D space. */ typedef struct OF_BOXABLE OFVector4D { /** The x coordinate of the vector */ @@ -461,11 +461,11 @@ @class OFMethodSignature; @class OFString; @class OFThread; /** - * @protocol OFObject OFObject.h ObjFW/OFObject.h + * @protocol OFObject OFObject.h ObjFW/ObjFW.h * * @brief The protocol which all root classes implement. */ @protocol OFObject /** @@ -680,11 +680,11 @@ */ - (bool)retainWeakReference; @end /** - * @class OFObject OFObject.h ObjFW/OFObject.h + * @class OFObject OFObject.h ObjFW/ObjFW.h * * @brief The root class for all other classes inside ObjFW. */ OF_ROOT_CLASS @interface OFObject @@ -1340,11 +1340,11 @@ */ - (void)doesNotRecognizeSelector: (SEL)selector OF_NO_RETURN; @end /** - * @protocol OFCopying OFObject.h ObjFW/OFObject.h + * @protocol OFCopying OFObject.h ObjFW/ObjFW.h * * @brief A protocol for the creation of copies. */ @protocol OFCopying /** @@ -1358,11 +1358,11 @@ */ - (id)copy; @end /** - * @protocol OFMutableCopying OFObject.h ObjFW/OFObject.h + * @protocol OFMutableCopying OFObject.h ObjFW/ObjFW.h * * @brief A protocol for the creation of mutable copies. * * This protocol is implemented by objects that can be mutable and immutable * and allows returning a mutable copy. @@ -1375,11 +1375,11 @@ */ - (id)mutableCopy; @end /** - * @protocol OFComparing OFObject.h ObjFW/OFObject.h + * @protocol OFComparing OFObject.h ObjFW/ObjFW.h * * @brief A protocol for comparing objects. * * This protocol is implemented by objects that can be compared. Its only * method, @ref compare:, should be overridden with a stronger type. Index: src/OFOptionsParser.h ================================================================== --- src/OFOptionsParser.h +++ src/OFOptionsParser.h @@ -23,11 +23,11 @@ @class OFMapTable; OF_ASSUME_NONNULL_BEGIN /** - * @struct OFOptionsParserOption OFOptionsParser.h ObjFW/OFOptionsParser.h + * @struct OFOptionsParserOption OFOptionsParser.h ObjFW/ObjFW.h * * @brief An option which can be parsed by an @ref OFOptionsParser. */ typedef struct { /** The short version (e.g. `-v`) of the option or `\0` for none. */ @@ -62,11 +62,11 @@ */ OFString *__autoreleasing _Nullable *_Nullable argumentPtr; } OFOptionsParserOption; /** - * @class OFOptionsParser OFOptionsParser.h ObjFW/OFOptionsParser.h + * @class OFOptionsParser OFOptionsParser.h ObjFW/ObjFW.h * * @brief A class for parsing the program options specified on the command line. */ OF_SUBCLASSING_RESTRICTED @interface OFOptionsParser: OFObject Index: src/OFPTRDNSResourceRecord.h ================================================================== --- src/OFPTRDNSResourceRecord.h +++ src/OFPTRDNSResourceRecord.h @@ -20,12 +20,11 @@ #import "OFDNSResourceRecord.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFPTRDNSResourceRecord \ - * OFDNSResourceRecord.h ObjFW/OFDNSResourceRecord.h + * @class OFPTRDNSResourceRecord OFPTRDNSResourceRecord.h ObjFW/ObjFW.h * * @brief A class representing a PTR DNS resource record. */ OF_SUBCLASSING_RESTRICTED @interface OFPTRDNSResourceRecord: OFDNSResourceRecord Index: src/OFPair.h ================================================================== --- src/OFPair.h +++ src/OFPair.h @@ -20,11 +20,11 @@ #import "OFObject.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFPair OFPair.h ObjFW/OFPair.h + * @class OFPair OFPair.h ObjFW/ObjFW.h * * @brief A class for storing a pair of two objects. */ @interface OFPair OF_GENERIC(FirstType, SecondType): OFObject Index: src/OFPlugin.h ================================================================== --- src/OFPlugin.h +++ src/OFPlugin.h @@ -30,11 +30,11 @@ #endif OF_ASSUME_NONNULL_BEGIN /** - * @class OFPlugin OFPlugin.h ObjFW/OFPlugin.h + * @class OFPlugin OFPlugin.h ObjFW/ObjFW.h * * @brief A class representing a loaded plugin (shared library). * */ OF_SUBCLASSING_RESTRICTED Index: src/OFRIPEMD160Hash.h ================================================================== --- src/OFRIPEMD160Hash.h +++ src/OFRIPEMD160Hash.h @@ -22,11 +22,11 @@ OF_ASSUME_NONNULL_BEGIN @class OFSecureData; /** - * @class OFRIPEMD160Hash OFRIPEMD160Hash.h ObjFW/OFRIPEMD160Hash.h + * @class OFRIPEMD160Hash OFRIPEMD160Hash.h ObjFW/ObjFW.h * * @brief A class which provides methods to create a RIPEMD-160 hash. */ OF_SUBCLASSING_RESTRICTED @interface OFRIPEMD160Hash: OFObject Index: src/OFRPDNSResourceRecord.h ================================================================== --- src/OFRPDNSResourceRecord.h +++ src/OFRPDNSResourceRecord.h @@ -20,12 +20,11 @@ #import "OFDNSResourceRecord.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFRPDNSResourceRecord \ - * OFDNSResourceRecord.h ObjFW/OFDNSResourceRecord.h + * @class OFRPDNSResourceRecord OFRPDNSResourceRecord.h ObjFW/ObjFW.h * * @brief A class representing an RP DNS resource record. */ OF_SUBCLASSING_RESTRICTED @interface OFRPDNSResourceRecord: OFDNSResourceRecord Index: src/OFRecursiveMutex.h ================================================================== --- src/OFRecursiveMutex.h +++ src/OFRecursiveMutex.h @@ -22,11 +22,11 @@ #import "OFPlainMutex.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFRecursiveMutex OFRecursiveMutex.h ObjFW/OFRecursiveMutex.h + * @class OFRecursiveMutex OFRecursiveMutex.h ObjFW/ObjFW.h * * @brief A class for creating mutual exclusions which can be entered * recursively. * * If the mutex is deallocated while being held, it throws an Index: src/OFRunLoop.h ================================================================== --- src/OFRunLoop.h +++ src/OFRunLoop.h @@ -55,11 +55,11 @@ #ifdef __cplusplus } #endif /** - * @class OFRunLoop OFRunLoop.h ObjFW/OFRunLoop.h + * @class OFRunLoop OFRunLoop.h ObjFW/ObjFW.h * * @brief A class providing a run loop for the application and its processes. */ OF_SUBCLASSING_RESTRICTED @interface OFRunLoop: OFObject Index: src/OFSCTPSocket.h ================================================================== --- src/OFSCTPSocket.h +++ src/OFSCTPSocket.h @@ -103,11 +103,11 @@ typedef OFData *_Nullable (^OFSCTPSocketAsyncSendDataBlock)( id _Nullable exception); #endif /** - * @protocol OFSCTPSocketDelegate OFSCTPSocket.h ObjFW/OFSCTPSocket.h + * @protocol OFSCTPSocketDelegate OFSCTPSocket.h ObjFW/ObjFW.h * * A delegate for OFSCTPSocket. */ @protocol OFSCTPSocketDelegate @optional @@ -156,11 +156,11 @@ info: (nullable OFSCTPMessageInfo)info exception: (nullable id)exception; @end /** - * @class OFSCTPSocket OFSCTPSocket.h ObjFW/OFSCTPSocket.h + * @class OFSCTPSocket OFSCTPSocket.h ObjFW/ObjFW.h * * @brief A class which provides methods to create and use SCTP sockets in * one-to-one mode. * * To connect to a server, create a socket and connect it. Index: src/OFSHA1Hash.h ================================================================== --- src/OFSHA1Hash.h +++ src/OFSHA1Hash.h @@ -22,11 +22,11 @@ OF_ASSUME_NONNULL_BEGIN @class OFSecureData; /** - * @class OFSHA1Hash OFSHA1Hash.h ObjFW/OFSHA1Hash.h + * @class OFSHA1Hash OFSHA1Hash.h ObjFW/ObjFW.h * * @brief A class which provides methods to create an SHA-1 hash. */ OF_SUBCLASSING_RESTRICTED @interface OFSHA1Hash: OFObject Index: src/OFSHA224Hash.h ================================================================== --- src/OFSHA224Hash.h +++ src/OFSHA224Hash.h @@ -20,11 +20,11 @@ #import "OFSHA224Or256Hash.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFSHA224Hash OFSHA224Hash.h ObjFW/OFSHA224Hash.h + * @class OFSHA224Hash OFSHA224Hash.h ObjFW/ObjFW.h * * @brief A class which provides methods to create an SHA-224 hash. */ OF_SUBCLASSING_RESTRICTED @interface OFSHA224Hash: OFSHA224Or256Hash Index: src/OFSHA224Or256Hash.h ================================================================== --- src/OFSHA224Or256Hash.h +++ src/OFSHA224Or256Hash.h @@ -22,11 +22,11 @@ OF_ASSUME_NONNULL_BEGIN @class OFSecureData; /** - * @class OFSHA224Or256Hash OFSHA224Or256Hash.h ObjFW/OFSHA224Or256Hash.h + * @class OFSHA224Or256Hash OFSHA224Or256Hash.h ObjFW/ObjFW.h * * @brief A base class for SHA-224 and SHA-256. */ @interface OFSHA224Or256Hash: OFObject { Index: src/OFSHA256Hash.h ================================================================== --- src/OFSHA256Hash.h +++ src/OFSHA256Hash.h @@ -20,11 +20,11 @@ #import "OFSHA224Or256Hash.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFSHA256Hash OFSHA256Hash.h ObjFW/OFSHA256Hash.h + * @class OFSHA256Hash OFSHA256Hash.h ObjFW/ObjFW.h * * @brief A class which provides methods to create an SHA-256 hash. */ OF_SUBCLASSING_RESTRICTED @interface OFSHA256Hash: OFSHA224Or256Hash Index: src/OFSHA384Hash.h ================================================================== --- src/OFSHA384Hash.h +++ src/OFSHA384Hash.h @@ -20,11 +20,11 @@ #import "OFSHA384Or512Hash.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFSHA384Hash OFSHA384Hash.h ObjFW/OFSHA384Hash.h + * @class OFSHA384Hash OFSHA384Hash.h ObjFW/ObjFW.h * * @brief A class which provides methods to create an SHA-384 hash. */ OF_SUBCLASSING_RESTRICTED @interface OFSHA384Hash: OFSHA384Or512Hash Index: src/OFSHA384Or512Hash.h ================================================================== --- src/OFSHA384Or512Hash.h +++ src/OFSHA384Or512Hash.h @@ -22,11 +22,11 @@ OF_ASSUME_NONNULL_BEGIN @class OFSecureData; /** - * @class OFSHA384Or512Hash OFSHA384Or512Hash.h ObjFW/OFSHA384Or512Hash.h + * @class OFSHA384Or512Hash OFSHA384Or512Hash.h ObjFW/ObjFW.h * * @brief A base class for SHA-384 and SHA-512. */ @interface OFSHA384Or512Hash: OFObject { Index: src/OFSHA512Hash.h ================================================================== --- src/OFSHA512Hash.h +++ src/OFSHA512Hash.h @@ -20,11 +20,11 @@ #import "OFSHA384Or512Hash.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFSHA512Hash OFSHA512Hash.h ObjFW/OFSHA512Hash.h + * @class OFSHA512Hash OFSHA512Hash.h ObjFW/ObjFW.h * * @brief A class which provides methods to create an SHA-512 hash. */ OF_SUBCLASSING_RESTRICTED @interface OFSHA512Hash: OFSHA384Or512Hash Index: src/OFSOADNSResourceRecord.h ================================================================== --- src/OFSOADNSResourceRecord.h +++ src/OFSOADNSResourceRecord.h @@ -20,12 +20,11 @@ #import "OFDNSResourceRecord.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFSOADNSResourceRecord \ - * OFDNSResourceRecord.h ObjFW/OFDNSResourceRecord.h + * @class OFSOADNSResourceRecord OFSOADNSResourceRecord.h ObjFW/ObjFW.h * * @brief A class representing an SOA DNS resource record. */ OF_SUBCLASSING_RESTRICTED @interface OFSOADNSResourceRecord: OFDNSResourceRecord Index: src/OFSPXSocket.h ================================================================== --- src/OFSPXSocket.h +++ src/OFSPXSocket.h @@ -36,11 +36,11 @@ */ typedef void (^OFSPXSocketAsyncConnectBlock)(id _Nullable exception); #endif /** - * @protocol OFSPXSocketDelegate OFSPXSocket.h ObjFW/OFSPXSocket.h + * @protocol OFSPXSocketDelegate OFSPXSocket.h ObjFW/ObjFW.h * * A delegate for OFSPXSocket. */ @protocol OFSPXSocketDelegate @optional @@ -60,11 +60,11 @@ port: (uint16_t)port exception: (nullable id)exception; @end /** - * @class OFSPXSocket OFSPXSocket.h ObjFW/OFSPXSocket.h + * @class OFSPXSocket OFSPXSocket.h ObjFW/ObjFW.h * * @brief A class which provides methods to create and use SPX sockets. * * @note If you want to use SPX in streaming mode instead of in message mode, * use @ref OFSPXStreamSocket instead. Index: src/OFSPXStreamSocket.h ================================================================== --- src/OFSPXStreamSocket.h +++ src/OFSPXStreamSocket.h @@ -36,12 +36,11 @@ */ typedef void (^OFSPXStreamSocketAsyncConnectBlock)(id _Nullable exception); #endif /** - * @protocol OFSPXStreamSocketDelegate OFSPXStreamSocket.h \ - * ObjFW/OFSPXStreamSocket.h + * @protocol OFSPXStreamSocketDelegate OFSPXStreamSocket.h ObjFW/ObjFW.h * * A delegate for OFSPXStreamSocket. */ @protocol OFSPXStreamSocketDelegate @optional @@ -61,11 +60,11 @@ port: (uint16_t)port exception: (nullable id)exception; @end /** - * @class OFSPXStreamSocket OFSPXStreamSocket.h ObjFW/OFSPXStreamSocket.h + * @class OFSPXStreamSocket OFSPXStreamSocket.h ObjFW/ObjFW.h * * @brief A class which provides methods to create and use SPX stream sockets. * * @note If you want to use SPX in message mode instead of in streaming mode, * use @ref OFSPXSocket instead. Index: src/OFSRVDNSResourceRecord.h ================================================================== --- src/OFSRVDNSResourceRecord.h +++ src/OFSRVDNSResourceRecord.h @@ -20,12 +20,11 @@ #import "OFDNSResourceRecord.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFSRVDNSResourceRecord \ - * OFDNSResourceRecord.h ObjFW/OFDNSResourceRecord.h + * @class OFSRVDNSResourceRecord OFSRVDNSResourceRecord.h ObjFW/ObjFW.h * * @brief A class representing an SRV DNS resource record. */ OF_SUBCLASSING_RESTRICTED @interface OFSRVDNSResourceRecord: OFDNSResourceRecord Index: src/OFSecureData.h ================================================================== --- src/OFSecureData.h +++ src/OFSecureData.h @@ -20,11 +20,11 @@ #import "OFData.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFSecureData OFSecureData.h ObjFW/OFSecureData.h + * @class OFSecureData OFSecureData.h ObjFW/ObjFW.h * * @brief A class for storing arbitrary data in secure (non-swappable) memory, * securely wiping it when it gets deallocated. * * @warning Non-swappable memory might be unavailable, in which case this falls Index: src/OFSeekableStream.h ================================================================== --- src/OFSeekableStream.h +++ src/OFSeekableStream.h @@ -59,11 +59,11 @@ /** Seek to the specified byte. */ OFSeekEnd } OFSeekWhence; /** - * @class OFSeekableStream OFSeekableStream.h ObjFW/OFSeekableStream.h + * @class OFSeekableStream OFSeekableStream.h ObjFW/ObjFW.h * * @brief A stream that supports seeking. * * @note If you want to subclass this, override * @ref lowlevelSeekToOffset:whence:. OFSeekableStream uses this method Index: src/OFSequencedPacketSocket.h ================================================================== --- src/OFSequencedPacketSocket.h +++ src/OFSequencedPacketSocket.h @@ -63,12 +63,12 @@ typedef bool (^OFSequencedPacketSocketAsyncAcceptBlock)( OFSequencedPacketSocket *acceptedSocket, id _Nullable exception); #endif /** - * @protocol OFSequencedPacketSocketDelegate OFSequencedPacketSocket.h \ - * ObjFW/OFSequencedPacketSocket.h + * @protocol OFSequencedPacketSocketDelegate OFSequencedPacketSocket.h + * ObjFW/ObjFW.h * * @brief A delegate for OFSequencedPacketSocket. */ @protocol OFSequencedPacketSocketDelegate @optional @@ -112,12 +112,12 @@ didAcceptSocket: (OFSequencedPacketSocket *)acceptedSocket exception: (nullable id)exception; @end /** - * @class OFSequencedPacketSocket OFSequencedPacketSocket.h \ - * ObjFW/OFSequencedPacketSocket.h + * @class OFSequencedPacketSocket OFSequencedPacketSocket.h + * ObjFW/ObjFW.h * * @brief A base class for sequenced packet sockets. * * @warning Even though the OFCopying protocol is implemented, it does *not* * return an independent copy of the socket, but instead retains it. Index: src/OFSet.h ================================================================== --- src/OFSet.h +++ src/OFSet.h @@ -53,11 +53,11 @@ */ typedef bool (^OFSetFilterBlock)(id object); #endif /** - * @class OFSet OFSet.h ObjFW/OFSet.h + * @class OFSet OFSet.h ObjFW/ObjFW.h * * @brief An abstract class for an unordered set of unique objects. * * @warning Do not mutate objects that are in a set! Changing the hash of * objects in a set breaks the internal representation of the set! Index: src/OFSettings.h ================================================================== --- src/OFSettings.h +++ src/OFSettings.h @@ -23,11 +23,11 @@ @class OFString; @class OFArray OF_GENERIC(ObjectType); /** - * @class OFSettings OFSettings.h ObjFW/OFSettings.h + * @class OFSettings OFSettings.h ObjFW/ObjFW.h * * Paths are delimited by dots, for example `category.subcategory.key`. * * @note The behavior when accessing a path with a different type than it has * been accessed with before is undefined! If you want to change the type Index: src/OFSocket.h ================================================================== --- src/OFSocket.h +++ src/OFSocket.h @@ -180,11 +180,11 @@ # define sat_node sat_addr.s_node # endif #endif /** - * @struct OFSocketAddress OFSocket.h ObjFW/OFSocket.h + * @struct OFSocketAddress OFSocket.h ObjFW/ObjFW.h * * @brief A struct which represents a host / port pair for a socket. */ typedef struct OF_BOXABLE OFSocketAddress { OFSocketAddressFamily family; Index: src/OFSortedList.h ================================================================== --- src/OFSortedList.h +++ src/OFSortedList.h @@ -20,11 +20,11 @@ #import "OFList.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFSortedList OFSortedList.h ObjFW/OFSortedList.h + * @class OFSortedList OFSortedList.h ObjFW/ObjFW.h * * @brief A class which provides easy to use sorted double-linked lists. * * @warning Because the list is sorted, all methods inserting an object at a * specific place are unavailable, even though they exist in OFList! Index: src/OFStdIOStream.h ================================================================== --- src/OFStdIOStream.h +++ src/OFStdIOStream.h @@ -29,11 +29,11 @@ /** @file */ @class OFColor; /** - * @class OFStdIOStream OFStdIOStream.h ObjFW/OFStdIOStream.h + * @class OFStdIOStream OFStdIOStream.h ObjFW/ObjFW.h * * @brief A class for providing standard input, output and error as OFStream. * * The global variables @ref OFStdIn, @ref OFStdOut and @ref OFStdErr are * instances of this class and need no initialization. Index: src/OFStream.h ================================================================== --- src/OFStream.h +++ src/OFStream.h @@ -93,11 +93,11 @@ typedef OFString *_Nullable (^OFStreamAsyncWriteStringBlock)( size_t bytesWritten, id _Nullable exception); #endif /** - * @protocol OFStreamDelegate OFStream.h ObjFW/OFStream.h + * @protocol OFStreamDelegate OFStream.h ObjFW/ObjFW.h * * A delegate for OFStream. */ @protocol OFStreamDelegate @optional @@ -166,11 +166,11 @@ bytesWritten: (size_t)bytesWritten exception: (nullable id)exception; @end /** - * @class OFStream OFStream.h ObjFW/OFStream.h + * @class OFStream OFStream.h ObjFW/ObjFW.h * * @brief A base class for different types of streams. * * @warning Even though the OFCopying protocol is implemented, it does *not* * return an independent copy of the stream, but instead retains it. Index: src/OFStreamSocket.h ================================================================== --- src/OFStreamSocket.h +++ src/OFStreamSocket.h @@ -39,11 +39,11 @@ typedef bool (^OFStreamSocketAsyncAcceptBlock)(OFStreamSocket *acceptedSocket, id _Nullable exception); #endif /** - * @protocol OFStreamSocketDelegate OFStreamSocket.h ObjFW/OFStreamSocket.h + * @protocol OFStreamSocketDelegate OFStreamSocket.h ObjFW/ObjFW.h * * A delegate for OFStreamSocket. */ @protocol OFStreamSocketDelegate @optional @@ -60,11 +60,11 @@ didAcceptSocket: (OFStreamSocket *)acceptedSocket exception: (nullable id)exception; @end /** - * @class OFStreamSocket OFStreamSocket.h ObjFW/OFStreamSocket.h + * @class OFStreamSocket OFStreamSocket.h ObjFW/ObjFW.h * * @brief A class which provides methods to create and use stream sockets. */ @interface OFStreamSocket: OFStream Index: src/OFString+XMLUnescaping.h ================================================================== --- src/OFString+XMLUnescaping.h +++ src/OFString+XMLUnescaping.h @@ -43,11 +43,11 @@ typedef OFString *_Nullable (^OFStringXMLUnescapingBlock)(OFString *string, OFString *entity); #endif /** - * @protocol OFStringXMLUnescapingDelegate OFString.h ObjFW/OFString.h + * @protocol OFStringXMLUnescapingDelegate OFString.h ObjFW/ObjFW.h * * @brief A protocol that needs to be implemented by delegates for * stringByXMLUnescapingWithHandler:. */ @protocol OFStringXMLUnescapingDelegate Index: src/OFString.h ================================================================== --- src/OFString.h +++ src/OFString.h @@ -129,11 +129,11 @@ */ typedef void (^OFStringLineEnumerationBlock)(OFString *line, bool *stop); #endif /** - * @class OFString OFString.h ObjFW/OFString.h + * @class OFString OFString.h ObjFW/ObjFW.h * * @brief A class for handling strings. */ @interface OFString: OFObject Index: src/OFSubprocess.h ================================================================== --- src/OFSubprocess.h +++ src/OFSubprocess.h @@ -42,11 +42,11 @@ @class OFArray OF_GENERIC(ObjectType); @class OFDictionary OF_GENERIC(KeyType, ObjectType); /** - * @class OFSubprocess OFSubprocess.h ObjFW/OFSubprocess.h + * @class OFSubprocess OFSubprocess.h ObjFW/ObjFW.h * * @brief A class for stream-like communication with a newly created subprocess. */ OF_SUBCLASSING_RESTRICTED @interface OFSubprocess: OFStream Index: src/OFSystemInfo.h ================================================================== --- src/OFSystemInfo.h +++ src/OFSystemInfo.h @@ -24,11 +24,11 @@ @class OFDictionary OF_GENERIC(KeyType, ObjectType); @class OFIRI; /** - * @class OFSystemInfo OFSystemInfo.h ObjFW/OFSystemInfo.h + * @class OFSystemInfo OFSystemInfo.h ObjFW/ObjFW.h * * @brief A class for querying information about the system. */ OF_SUBCLASSING_RESTRICTED @interface OFSystemInfo: OFObject Index: src/OFTCPSocket.h ================================================================== --- src/OFTCPSocket.h +++ src/OFTCPSocket.h @@ -36,11 +36,11 @@ */ typedef void (^OFTCPSocketAsyncConnectBlock)(id _Nullable exception); #endif /** - * @protocol OFTCPSocketDelegate OFTCPSocket.h ObjFW/OFTCPSocket.h + * @protocol OFTCPSocketDelegate OFTCPSocket.h ObjFW/ObjFW.h * * A delegate for OFTCPSocket. */ @protocol OFTCPSocketDelegate @optional @@ -58,11 +58,11 @@ port: (uint16_t)port exception: (nullable id)exception; @end /** - * @class OFTCPSocket OFTCPSocket.h ObjFW/OFTCPSocket.h + * @class OFTCPSocket OFTCPSocket.h ObjFW/ObjFW.h * * @brief A class which provides methods to create and use TCP sockets. * * To connect to a server, create a socket and connect it. * To create a server, create a socket, bind it and listen on it. Index: src/OFTLSStream.h ================================================================== --- src/OFTLSStream.h +++ src/OFTLSStream.h @@ -35,11 +35,11 @@ /** @brief Initialization of the TLS context failed. */ OFTLSStreamErrorCodeInitializationFailed } OFTLSStreamErrorCode; /** - * @protocol OFTLSStreamDelegate OFTLSStream.h ObjFW/OFTLSStream.h + * @protocol OFTLSStreamDelegate OFTLSStream.h ObjFW/ObjFW.h * * A delegate for OFTLSStream. */ @protocol OFTLSStreamDelegate /** @@ -55,11 +55,11 @@ didPerformClientHandshakeWithHost: (OFString *)host exception: (nullable id)exception; @end /** - * @class OFTLSStream OFTLSStream.h ObjFW/OFTLSStream.h + * @class OFTLSStream OFTLSStream.h ObjFW/ObjFW.h * * @brief A class that provides Transport Layer Security on top of a stream. * * This class is a class cluster and returns a suitable OFTLSStream subclass, * if available. Index: src/OFTXTDNSResourceRecord.h ================================================================== --- src/OFTXTDNSResourceRecord.h +++ src/OFTXTDNSResourceRecord.h @@ -20,12 +20,11 @@ #import "OFDNSResourceRecord.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFTXTDNSResourceRecord \ - * OFDNSResourceRecord.h ObjFW/OFDNSResourceRecord.h + * @class OFTXTDNSResourceRecord OFTXTDNSResourceRecord.h ObjFW/ObjFW.h * * @brief A class representing a TXT DNS resource record. */ OF_SUBCLASSING_RESTRICTED @interface OFTXTDNSResourceRecord: OFDNSResourceRecord Index: src/OFTarArchive.h ================================================================== --- src/OFTarArchive.h +++ src/OFTarArchive.h @@ -25,11 +25,11 @@ @class OFIRI; @class OFStream; /** - * @class OFTarArchive OFTarArchive.h ObjFW/OFTarArchive.h + * @class OFTarArchive OFTarArchive.h ObjFW/ObjFW.h * * @brief A class for accessing and manipulating tar archives. */ OF_SUBCLASSING_RESTRICTED @interface OFTarArchive: OFObject Index: src/OFTarArchiveEntry.h ================================================================== --- src/OFTarArchiveEntry.h +++ src/OFTarArchiveEntry.h @@ -48,11 +48,11 @@ /** Contiguous file */ OFTarArchiveEntryTypeContiguousFile = '7', } OFTarArchiveEntryType; /** - * @class OFTarArchiveEntry OFTarArchiveEntry.h ObjFW/OFTarArchiveEntry.h + * @class OFTarArchiveEntry OFTarArchiveEntry.h ObjFW/ObjFW.h * * @brief A class which represents an entry of a tar archive. */ @interface OFTarArchiveEntry: OFObject Index: src/OFThread.h ================================================================== --- src/OFThread.h +++ src/OFThread.h @@ -43,11 +43,11 @@ */ typedef id _Nullable (^OFThreadBlock)(void); #endif /** - * @class OFThread OFThread.h ObjFW/OFThread.h + * @class OFThread OFThread.h ObjFW/ObjFW.h * * @brief A class which provides portable threads. * * To use it, you should create a new class derived from it and reimplement * main. Index: src/OFTimer.h ================================================================== --- src/OFTimer.h +++ src/OFTimer.h @@ -38,11 +38,11 @@ */ typedef void (^OFTimerBlock)(OFTimer *timer); #endif /** - * @class OFTimer OFTimer.h ObjFW/OFTimer.h + * @class OFTimer OFTimer.h ObjFW/ObjFW.h * * @brief A class for creating and firing timers. */ OF_SUBCLASSING_RESTRICTED @interface OFTimer: OFObject Index: src/OFTriple.h ================================================================== --- src/OFTriple.h +++ src/OFTriple.h @@ -20,11 +20,11 @@ #import "OFObject.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFTriple OFTriple.h ObjFW/OFTriple.h + * @class OFTriple OFTriple.h ObjFW/ObjFW.h * * @brief A class for storing a triple of three objects. */ @interface OFTriple OF_GENERIC(FirstType, SecondType, ThirdType): OFObject Index: src/OFUDPSocket.h ================================================================== --- src/OFUDPSocket.h +++ src/OFUDPSocket.h @@ -22,19 +22,19 @@ OF_ASSUME_NONNULL_BEGIN @class OFString; /** - * @protocol OFUDPSocketDelegate OFUDPSocket.h ObjFW/OFUDPSocket.h + * @protocol OFUDPSocketDelegate OFUDPSocket.h ObjFW/ObjFW.h * * @brief A delegate for OFUDPSocket. */ @protocol OFUDPSocketDelegate @end /** - * @class OFUDPSocket OFUDPSocket.h ObjFW/OFUDPSocket.h + * @class OFUDPSocket OFUDPSocket.h ObjFW/ObjFW.h * * @brief A class which provides methods to create and use UDP sockets. * * Addresses are of type @ref OFSocketAddress. You can use the current thread's * @ref OFDNSResolver to create an address for a host / port pair, Index: src/OFUNIXDatagramSocket.h ================================================================== --- src/OFUNIXDatagramSocket.h +++ src/OFUNIXDatagramSocket.h @@ -22,21 +22,19 @@ OF_ASSUME_NONNULL_BEGIN @class OFString; /** - * @protocol OFUNIXDatagramSocketDelegate OFUNIXDatagramSocket.h \ - * ObjFW/OFUNIXDatagramSocket.h + * @protocol OFUNIXDatagramSocketDelegate OFUNIXDatagramSocket.h ObjFW/ObjFW.h * * @brief A delegate for OFUNIXDatagramSocket. */ @protocol OFUNIXDatagramSocketDelegate @end /** - * @class OFUNIXDatagramSocket OFUNIXDatagramSocket.h \ - * ObjFW/OFUNIXDatagramSocket.h + * @class OFUNIXDatagramSocket OFUNIXDatagramSocket.h ObjFW/ObjFW.h * * @brief A class which provides methods to create and use UNIX datagram * sockets. * * Addresses are of type @ref OFSocketAddress. You can use Index: src/OFUNIXStreamSocket.h ================================================================== --- src/OFUNIXStreamSocket.h +++ src/OFUNIXStreamSocket.h @@ -22,20 +22,19 @@ OF_ASSUME_NONNULL_BEGIN @class OFString; /** - * @protocol OFUNIXStreamSocketDelegate OFUNIXStreamSocket.h \ - * ObjFW/OFUNIXStreamSocket.h + * @protocol OFUNIXStreamSocketDelegate OFUNIXStreamSocket.h ObjFW/ObjFW.h * * A delegate for OFUNIXStreamSocket. */ @protocol OFUNIXStreamSocketDelegate @end /** - * @class OFUNIXStreamSocket OFUNIXStreamSocket.h ObjFW/OFUNIXStreamSocket.h + * @class OFUNIXStreamSocket OFUNIXStreamSocket.h ObjFW/ObjFW.h * * @brief A class which provides methods to create and use UNIX stream sockets. * * To connect to a server, create a socket and connect it. * To create a server, create a socket, bind it and listen on it. Index: src/OFURIDNSResourceRecord.h ================================================================== --- src/OFURIDNSResourceRecord.h +++ src/OFURIDNSResourceRecord.h @@ -20,12 +20,11 @@ #import "OFDNSResourceRecord.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFURIDNSResourceRecord \ - * OFDNSResourceRecord.h ObjFW/OFDNSResourceRecord.h + * @class OFURIDNSResourceRecord OFURIDNSResourceRecord.h ObjFW/ObjFW.h * * @brief A class representing an URI DNS resource record. */ OF_SUBCLASSING_RESTRICTED @interface OFURIDNSResourceRecord: OFDNSResourceRecord Index: src/OFUUID.h ================================================================== --- src/OFUUID.h +++ src/OFUUID.h @@ -22,11 +22,11 @@ OF_ASSUME_NONNULL_BEGIN @class OFString; /** - * @class OFUUID OFUUID.h ObjFW/OFUUID.h + * @class OFUUID OFUUID.h ObjFW/ObjFW.h * * @brief A UUID conforming to RFC 4122. */ OF_SUBCLASSING_RESTRICTED @interface OFUUID: OFObject Index: src/OFValue.h ================================================================== --- src/OFValue.h +++ src/OFValue.h @@ -20,11 +20,11 @@ #import "OFObject.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFValue OFValue.h ObjFW/OFValue.h + * @class OFValue OFValue.h ObjFW/ObjFW.h * * @brief A class for storing arbitrary values in an object. */ @interface OFValue: OFObject /** Index: src/OFWindowsRegistryKey.h ================================================================== --- src/OFWindowsRegistryKey.h +++ src/OFWindowsRegistryKey.h @@ -25,12 +25,11 @@ OF_ASSUME_NONNULL_BEGIN @class OFData; /** - * @class OFWindowsRegistryKey \ - * OFWindowsRegistryKey.h ObjFW/OFWindowsRegistryKey.h + * @class OFWindowsRegistryKey OFWindowsRegistryKey.h ObjFW/ObjFW.h */ OF_SUBCLASSING_RESTRICTED @interface OFWindowsRegistryKey: OFObject { HKEY _hKey; Index: src/OFXMLAttribute.h ================================================================== --- src/OFXMLAttribute.h +++ src/OFXMLAttribute.h @@ -22,11 +22,11 @@ OF_ASSUME_NONNULL_BEGIN @class OFString; /** - * @class OFXMLAttribute OFXMLAttribute.h ObjFW/OFXMLAttribute.h + * @class OFXMLAttribute OFXMLAttribute.h ObjFW/ObjFW.h * * @brief A representation of an attribute of an XML element as an object. */ OF_SUBCLASSING_RESTRICTED @interface OFXMLAttribute: OFXMLNode Index: src/OFXMLCDATA.h ================================================================== --- src/OFXMLCDATA.h +++ src/OFXMLCDATA.h @@ -20,11 +20,11 @@ #import "OFXMLNode.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFXMLCDATA OFXMLCDATA.h ObjFW/OFXMLCDATA.h + * @class OFXMLCDATA OFXMLCDATA.h ObjFW/ObjFW.h * * @brief A class representing XML CDATA. */ OF_SUBCLASSING_RESTRICTED @interface OFXMLCDATA: OFXMLNode Index: src/OFXMLCharacters.h ================================================================== --- src/OFXMLCharacters.h +++ src/OFXMLCharacters.h @@ -20,11 +20,11 @@ #import "OFXMLNode.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFXMLCharacters OFXMLCharacters.h ObjFW/OFXMLCharacters.h + * @class OFXMLCharacters OFXMLCharacters.h ObjFW/ObjFW.h * * @brief A class representing XML characters. */ OF_SUBCLASSING_RESTRICTED @interface OFXMLCharacters: OFXMLNode Index: src/OFXMLComment.h ================================================================== --- src/OFXMLComment.h +++ src/OFXMLComment.h @@ -20,11 +20,11 @@ #import "OFXMLNode.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFXMLComment OFXMLComment.h ObjFW/OFXMLComment.h + * @class OFXMLComment OFXMLComment.h ObjFW/ObjFW.h * * @brief A class for representing XML comments. */ OF_SUBCLASSING_RESTRICTED @interface OFXMLComment: OFXMLNode Index: src/OFXMLElement.h ================================================================== --- src/OFXMLElement.h +++ src/OFXMLElement.h @@ -28,11 +28,11 @@ @class OFStream; @class OFString; @class OFXMLAttribute; /** - * @class OFXMLElement OFXMLElement.h ObjFW/OFXMLElement.h + * @class OFXMLElement OFXMLElement.h ObjFW/ObjFW.h * * @brief A class which stores an XML element. */ @interface OFXMLElement: OFXMLNode { Index: src/OFXMLElementBuilder.h ================================================================== --- src/OFXMLElementBuilder.h +++ src/OFXMLElementBuilder.h @@ -25,12 +25,11 @@ @class OFMutableArray OF_GENERIC(ObjectType); @class OFXMLElement; @class OFXMLElementBuilder; /** - * @protocol OFXMLElementBuilderDelegate - * OFXMLElementBuilder.h ObjFW/OFXMLElementBuilder.h + * @protocol OFXMLElementBuilderDelegate OFXMLElementBuilder.h ObjFW/ObjFW.h * * @brief A protocol that needs to be implemented by delegates for * OFXMLElementBuilder. */ @protocol OFXMLElementBuilderDelegate @@ -95,11 +94,11 @@ - (OFString *)elementBuilder: (OFXMLElementBuilder *)builder foundUnknownEntityNamed: (OFString *)entity; @end /** - * @class OFXMLElementBuilder OFXMLElementBuilder.h ObjFW/OFXMLElementBuilder.h + * @class OFXMLElementBuilder OFXMLElementBuilder.h ObjFW/ObjFW.h * * @brief A class implementing the OFXMLParserDelegate protocol that can build * OFXMLElements from the document parsed by the OFXMLParser. * * It can also be used to build OFXMLElements from parts of the document by Index: src/OFXMLNode.h ================================================================== --- src/OFXMLNode.h +++ src/OFXMLNode.h @@ -20,11 +20,11 @@ #import "OFObject.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFXMLNode OFXMLNode.h ObjFW/OFXMLNode.h + * @class OFXMLNode OFXMLNode.h ObjFW/ObjFW.h * * @brief A class which stores an XML element. */ @interface OFXMLNode: OFObject { Index: src/OFXMLParser.h ================================================================== --- src/OFXMLParser.h +++ src/OFXMLParser.h @@ -29,11 +29,11 @@ @class OFMutableDictionary OF_GENERIC(KeyType, ObjectType); @class OFStream; @class OFXMLParser; /** - * @protocol OFXMLParserDelegate OFXMLParser.h ObjFW/OFXMLParser.h + * @protocol OFXMLParserDelegate OFXMLParser.h ObjFW/ObjFW.h * * @brief A protocol that needs to be implemented by delegates for OFXMLParser. */ @protocol OFXMLParserDelegate @optional @@ -121,11 +121,11 @@ - (nullable OFString *)parser: (OFXMLParser *)parser foundUnknownEntityNamed: (OFString *)entity; @end /** - * @class OFXMLParser OFXMLParser.h ObjFW/OFXMLParser.h + * @class OFXMLParser OFXMLParser.h ObjFW/ObjFW.h * * @brief An event-based XML parser. * * OFXMLParser is an event-based XML parser which calls the delegate's callbacks * as soon as it finds something, thus suitable for streams as well. Index: src/OFXMLProcessingInstruction.h ================================================================== --- src/OFXMLProcessingInstruction.h +++ src/OFXMLProcessingInstruction.h @@ -20,12 +20,11 @@ #import "OFXMLNode.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFXMLProcessingInstruction \ - * OFXMLProcessingInstruction.h ObjFW/OFXMLProcessingInstruction.h + * @class OFXMLProcessingInstruction OFXMLProcessingInstruction.h ObjFW/ObjFW.h * * @brief A class for representing an XML processing instruction. */ OF_SUBCLASSING_RESTRICTED @interface OFXMLProcessingInstruction: OFXMLNode Index: src/OFZIPArchive.h ================================================================== --- src/OFZIPArchive.h +++ src/OFZIPArchive.h @@ -29,11 +29,11 @@ @class OFSeekableStream; @class OFStream; @class OFZIPArchive; /** - * @protocol OFZIPArchiveDelegate OFZIPArchive.h ObjFW/OFZIPArchive.h + * @protocol OFZIPArchiveDelegate OFZIPArchive.h ObjFW/ObjFW.h * * @brief A delegate for OFZIPArchive. */ @protocol OFZIPArchiveDelegate @optional @@ -50,11 +50,11 @@ wantsPartNumbered: (unsigned int)partNumber lastPartNumber: (unsigned int)lastPartNumber; @end /** - * @class OFZIPArchive OFZIPArchive.h ObjFW/OFZIPArchive.h + * @class OFZIPArchive OFZIPArchive.h ObjFW/ObjFW.h * * @brief A class for accessing and manipulating ZIP files. */ OF_SUBCLASSING_RESTRICTED @interface OFZIPArchive: OFObject Index: src/OFZIPArchiveEntry.h ================================================================== --- src/OFZIPArchiveEntry.h +++ src/OFZIPArchiveEntry.h @@ -98,11 +98,11 @@ @class OFData; @class OFFile; @class OFDate; /** - * @class OFZIPArchiveEntry OFZIPArchiveEntry.h ObjFW/OFZIPArchiveEntry.h + * @class OFZIPArchiveEntry OFZIPArchiveEntry.h ObjFW/ObjFW.h * * @brief A class which represents an entry in the central directory of a ZIP * archive. */ @interface OFZIPArchiveEntry: OFObject Index: src/bridge/NSBridging.h ================================================================== --- src/bridge/NSBridging.h +++ src/bridge/NSBridging.h @@ -28,11 +28,11 @@ #endif OF_ASSUME_NONNULL_BEGIN /** - * @protocol NSBridging NSBridging.h ObjFWBridge/NSBridging.h + * @protocol NSBridging NSBridging.h ObjFWBridge/ObjFWBridge.h * * @brief A protocol implemented by classes supporting bridging Foundation * objects to ObjFW objects. */ @protocol NSBridging Index: src/bridge/OFBridging.h ================================================================== --- src/bridge/OFBridging.h +++ src/bridge/OFBridging.h @@ -28,11 +28,11 @@ #endif OF_ASSUME_NONNULL_BEGIN /** - * @protocol OFBridging OFBridging.h ObjFWBridge/OFBridging.h + * @protocol OFBridging OFBridging.h ObjFWBridge/ObjFWBridge.h * * @brief A protocol implemented by classes supporting bridging ObjFW objects * to Foundation objects. */ @protocol OFBridging Index: src/exceptions/OFAcceptSocketFailedException.h ================================================================== --- src/exceptions/OFAcceptSocketFailedException.h +++ src/exceptions/OFAcceptSocketFailedException.h @@ -24,12 +24,12 @@ #endif OF_ASSUME_NONNULL_BEGIN /** - * @class OFAcceptSocketFailedException \ - * OFAcceptSocketFailedException.h ObjFW/OFAcceptSocketFailedException.h + * @class OFAcceptSocketFailedException OFAcceptSocketFailedException.h + * ObjFW/ObjFW.h * * @brief An exception indicating that accepting a connection failed. */ @interface OFAcceptSocketFailedException: OFException { Index: src/exceptions/OFAllocFailedException.h ================================================================== --- src/exceptions/OFAllocFailedException.h +++ src/exceptions/OFAllocFailedException.h @@ -22,12 +22,11 @@ OF_ASSUME_NONNULL_BEGIN @class OFString; /** - * @class OFAllocFailedException \ - * OFAllocFailedException.h ObjFW/OFAllocFailedException.h + * @class OFAllocFailedException OFAllocFailedException.h ObjFW/ObjFW.h * * @brief An exception indicating an object could not be allocated. * * This exception is preallocated, as when there's no memory, no exception can * be allocated of course. That's why you shouldn't and even can't deallocate Index: src/exceptions/OFAlreadyOpenException.h ================================================================== --- src/exceptions/OFAlreadyOpenException.h +++ src/exceptions/OFAlreadyOpenException.h @@ -20,12 +20,11 @@ #import "OFException.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFAlreadyOpenException \ - * OFAlreadyOpenException.h ObjFW/OFAlreadyOpenException.h + * @class OFAlreadyOpenException OFAlreadyOpenException.h ObjFW/ObjFW.h * * @brief An exception indicating that an object is already open and thus * cannot be opened again. */ @interface OFAlreadyOpenException: OFException Index: src/exceptions/OFBindDDPSocketFailedException.h ================================================================== --- src/exceptions/OFBindDDPSocketFailedException.h +++ src/exceptions/OFBindDDPSocketFailedException.h @@ -20,13 +20,12 @@ #import "OFBindSocketFailedException.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFBindDDPSocketFailedException \ - * OFBindDDPSocketFailedException.h \ - * ObjFW/OFBindDDPSocketFailedException.h + * @class OFBindDDPSocketFailedException OFBindDDPSocketFailedException.h + * ObjFW/ObjFW.h * * @brief An exception indicating that binding a DDP socket failed. */ OF_SUBCLASSING_RESTRICTED @interface OFBindDDPSocketFailedException: OFBindSocketFailedException Index: src/exceptions/OFBindIPSocketFailedException.h ================================================================== --- src/exceptions/OFBindIPSocketFailedException.h +++ src/exceptions/OFBindIPSocketFailedException.h @@ -24,12 +24,12 @@ #endif OF_ASSUME_NONNULL_BEGIN /** - * @class OFBindIPSocketFailedException \ - * OFBindIPSocketFailedException.h ObjFW/OFBindIPSocketFailedException.h + * @class OFBindIPSocketFailedException OFBindIPSocketFailedException.h + * ObjFW/ObjFW.h * * @brief An exception indicating that binding an IP socket failed. */ OF_SUBCLASSING_RESTRICTED @interface OFBindIPSocketFailedException: OFBindSocketFailedException Index: src/exceptions/OFBindIPXSocketFailedException.h ================================================================== --- src/exceptions/OFBindIPXSocketFailedException.h +++ src/exceptions/OFBindIPXSocketFailedException.h @@ -20,13 +20,12 @@ #import "OFBindSocketFailedException.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFBindIPXSocketFailedException \ - * OFBindIPXSocketFailedException.h \ - * ObjFW/OFBindIPXSocketFailedException.h + * @class OFBindIPXSocketFailedException OFBindIPXSocketFailedException.h + * ObjFW/ObjFW.h * * @brief An exception indicating that binding an IPX socket failed. */ OF_SUBCLASSING_RESTRICTED @interface OFBindIPXSocketFailedException: OFBindSocketFailedException Index: src/exceptions/OFBindSocketFailedException.h ================================================================== --- src/exceptions/OFBindSocketFailedException.h +++ src/exceptions/OFBindSocketFailedException.h @@ -26,12 +26,12 @@ #import "OFSocket.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFBindSocketFailedException \ - * OFBindSocketFailedException.h ObjFW/OFBindSocketFailedException.h + * @class OFBindSocketFailedException OFBindSocketFailedException.h + * ObjFW/ObjFW.h * * @brief An exception indicating that binding a socket failed. */ @interface OFBindSocketFailedException: OFException { Index: src/exceptions/OFBindUNIXSocketFailedException.h ================================================================== --- src/exceptions/OFBindUNIXSocketFailedException.h +++ src/exceptions/OFBindUNIXSocketFailedException.h @@ -20,13 +20,12 @@ #import "OFBindSocketFailedException.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFBindUNIXSocketFailedException \ - * OFBindUNIXSocketFailedException.h \ - * ObjFW/OFBindUNIXSocketFailedException.h + * @class OFBindUNIXSocketFailedException OFBindUNIXSocketFailedException.h + * ObjFW/ObjFW.h * * @brief An exception indicating that binding a UNIX socket failed. */ OF_SUBCLASSING_RESTRICTED @interface OFBindUNIXSocketFailedException: OFBindSocketFailedException Index: src/exceptions/OFBroadcastConditionFailedException.h ================================================================== --- src/exceptions/OFBroadcastConditionFailedException.h +++ src/exceptions/OFBroadcastConditionFailedException.h @@ -26,13 +26,12 @@ OF_ASSUME_NONNULL_BEGIN @class OFCondition; /** - * @class OFBroadcastConditionFailedException \ - * OFBroadcastConditionFailedException.h \ - * ObjFW/OFBroadcastConditionFailedException.h + * @class OFBroadcastConditionFailedException + * OFBroadcastConditionFailedException.h ObjFW/ObjFW.h * * @brief An exception indicating broadcasting a condition failed. */ @interface OFBroadcastConditionFailedException: OFException { Index: src/exceptions/OFChangeCurrentDirectoryFailedException.h ================================================================== --- src/exceptions/OFChangeCurrentDirectoryFailedException.h +++ src/exceptions/OFChangeCurrentDirectoryFailedException.h @@ -20,13 +20,12 @@ #import "OFException.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFChangeCurrentDirectoryFailedException \ - * OFChangeCurrentDirectoryFailedException.h \ - * ObjFW/OFChangeCurrentDirectoryFailedException.h + * @class OFChangeCurrentDirectoryFailedException + * OFChangeCurrentDirectoryFailedException.h ObjFW/ObjFW.h * * @brief An exception indicating that changing the current directory path * failed. */ @interface OFChangeCurrentDirectoryFailedException: OFException Index: src/exceptions/OFChecksumMismatchException.h ================================================================== --- src/exceptions/OFChecksumMismatchException.h +++ src/exceptions/OFChecksumMismatchException.h @@ -20,12 +20,12 @@ #import "OFException.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFChecksumMismatchException \ - * OFChecksumMismatchException.h ObjFW/OFChecksumMismatchException.h + * @class OFChecksumMismatchException OFChecksumMismatchException.h + * ObjFW/ObjFW.h * * @brief An exception indicating that a checksum did not match. */ @interface OFChecksumMismatchException: OFException { Index: src/exceptions/OFConditionStillWaitingException.h ================================================================== --- src/exceptions/OFConditionStillWaitingException.h +++ src/exceptions/OFConditionStillWaitingException.h @@ -26,13 +26,12 @@ OF_ASSUME_NONNULL_BEGIN @class OFCondition; /** - * @class OFConditionStillWaitingException \ - * OFConditionStillWaitingException.h \ - * ObjFW/OFConditionStillWaitingException.h + * @class OFConditionStillWaitingException OFConditionStillWaitingException.h + * ObjFW/ObjFW.h * * @brief An exception indicating that a thread is still waiting for a * condition. */ @interface OFConditionStillWaitingException: OFException Index: src/exceptions/OFConnectIPSocketFailedException.h ================================================================== --- src/exceptions/OFConnectIPSocketFailedException.h +++ src/exceptions/OFConnectIPSocketFailedException.h @@ -20,13 +20,12 @@ #import "OFConnectSocketFailedException.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFConnectIPSocketFailedException \ - * OFConnectIPSocketFailedException.h \ - * ObjFW/OFConnectIPSocketFailedException.h + * @class OFConnectIPSocketFailedException OFConnectIPSocketFailedException.h + * ObjFW/ObjFW.h * * @brief An exception indicating that an IP connection could not be * established. */ OF_SUBCLASSING_RESTRICTED Index: src/exceptions/OFConnectSPXSocketFailedException.h ================================================================== --- src/exceptions/OFConnectSPXSocketFailedException.h +++ src/exceptions/OFConnectSPXSocketFailedException.h @@ -20,13 +20,12 @@ #import "OFConnectSocketFailedException.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFConnectSPXSocketFailedException \ - * OFConnectSPXSocketFailedException.h \ - * ObjFW/OFConnectSocketFailedException.h + * @class OFConnectSPXSocketFailedException OFConnectSPXSocketFailedException.h + * ObjFW/ObjFW.h * * @brief An exception indicating that an SPX connection could not be * established. */ OF_SUBCLASSING_RESTRICTED Index: src/exceptions/OFConnectSocketFailedException.h ================================================================== --- src/exceptions/OFConnectSocketFailedException.h +++ src/exceptions/OFConnectSocketFailedException.h @@ -26,13 +26,12 @@ #import "OFSocket.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFConnectSocketFailedException \ - * OFConnectSocketFailedException.h \ - * ObjFW/OFConnectSocketFailedException.h + * @class OFConnectSocketFailedException OFConnectSocketFailedException.h + * ObjFW/ObjFW.h * * @brief An exception indicating that a connection could not be established. */ @interface OFConnectSocketFailedException: OFException { Index: src/exceptions/OFConnectUNIXSocketFailedException.h ================================================================== --- src/exceptions/OFConnectUNIXSocketFailedException.h +++ src/exceptions/OFConnectUNIXSocketFailedException.h @@ -20,13 +20,12 @@ #import "OFConnectSocketFailedException.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFConnectUNIXSocketFailedException \ - * OFConnectUNIXSocketFailedException.h \ - * ObjFW/OFConnectUNIXSocketFailedException.h + * @class OFConnectUNIXSocketFailedException + * OFConnectUNIXSocketFailedException.h ObjFW/ObjFW.h * * @brief An exception indicating that a UNIX socket connection could not be * established. */ OF_SUBCLASSING_RESTRICTED Index: src/exceptions/OFCopyItemFailedException.h ================================================================== --- src/exceptions/OFCopyItemFailedException.h +++ src/exceptions/OFCopyItemFailedException.h @@ -22,12 +22,11 @@ OF_ASSUME_NONNULL_BEGIN @class OFIRI; /** - * @class OFCopyItemFailedException \ - * OFCopyItemFailedException.h ObjFW/OFCopyItemFailedException.h + * @class OFCopyItemFailedException OFCopyItemFailedException.h ObjFW/ObjFW.h * * @brief An exception indicating that copying a item failed. */ @interface OFCopyItemFailedException: OFException { Index: src/exceptions/OFCreateDirectoryFailedException.h ================================================================== --- src/exceptions/OFCreateDirectoryFailedException.h +++ src/exceptions/OFCreateDirectoryFailedException.h @@ -22,13 +22,12 @@ OF_ASSUME_NONNULL_BEGIN @class OFIRI; /** - * @class OFCreateDirectoryFailedException \ - * OFCreateDirectoryFailedException.h \ - * ObjFW/OFCreateDirectoryFailedException.h + * @class OFCreateDirectoryFailedException OFCreateDirectoryFailedException.h + * ObjFW/ObjFW.h * * @brief An exception indicating a directory couldn't be created. */ @interface OFCreateDirectoryFailedException: OFException { Index: src/exceptions/OFCreateSymbolicLinkFailedException.h ================================================================== --- src/exceptions/OFCreateSymbolicLinkFailedException.h +++ src/exceptions/OFCreateSymbolicLinkFailedException.h @@ -22,13 +22,12 @@ OF_ASSUME_NONNULL_BEGIN @class OFIRI; /** - * @class OFCreateSymbolicLinkFailedException \ - * OFCreateSymbolicLinkFailedException.h \ - * ObjFW/OFCreateSymbolicLinkFailedException.h + * @class OFCreateSymbolicLinkFailedException + * OFCreateSymbolicLinkFailedException.h ObjFW/ObjFW.h * * @brief An exception indicating that creating a symbolic link failed. */ @interface OFCreateSymbolicLinkFailedException: OFException { Index: src/exceptions/OFCreateWindowsRegistryKeyFailedException.h ================================================================== --- src/exceptions/OFCreateWindowsRegistryKeyFailedException.h +++ src/exceptions/OFCreateWindowsRegistryKeyFailedException.h @@ -23,13 +23,12 @@ #include OF_ASSUME_NONNULL_BEGIN /** - * @class OFCreateWindowsRegistryKeyFailedException \ - * OFCreateWindowsRegistryKeyFailedException.h \ - * ObjFW/OFCreateWindowsRegistryKeyFailedException.h + * @class OFCreateWindowsRegistryKeyFailedException + * OFCreateWindowsRegistryKeyFailedException.h ObjFW/ObjFW.h * * @brief An exception indicating that creating a Windows registry key failed. */ @interface OFCreateWindowsRegistryKeyFailedException: OFException { Index: src/exceptions/OFDNSQueryFailedException.h ================================================================== --- src/exceptions/OFDNSQueryFailedException.h +++ src/exceptions/OFDNSQueryFailedException.h @@ -23,12 +23,11 @@ #import "OFDNSResourceRecord.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFDNSQueryFailedException \ - * OFDNSQueryFailedException.h ObjFW/OFDNSQueryFailedException.h + * @class OFDNSQueryFailedException OFDNSQueryFailedException.h ObjFW/ObjFW.h * * @brief An exception indicating that a DNS query failed. */ @interface OFDNSQueryFailedException: OFException { Index: src/exceptions/OFDeleteWindowsRegistryKeyFailedException.h ================================================================== --- src/exceptions/OFDeleteWindowsRegistryKeyFailedException.h +++ src/exceptions/OFDeleteWindowsRegistryKeyFailedException.h @@ -23,13 +23,12 @@ #include OF_ASSUME_NONNULL_BEGIN /** - * @class OFDeleteWindowsRegistryKeyFailedException \ - * OFDeleteWindowsRegistryKeyFailedException.h \ - * ObjFW/OFDeleteWindowsRegistryKeyFailedException.h + * @class OFDeleteWindowsRegistryKeyFailedException + * OFDeleteWindowsRegistryKeyFailedException.h ObjFW/ObjFW.h * * @brief An exception indicating that deleting a Windows registry key failed. */ @interface OFDeleteWindowsRegistryKeyFailedException: OFException { Index: src/exceptions/OFDeleteWindowsRegistryValueFailedException.h ================================================================== --- src/exceptions/OFDeleteWindowsRegistryValueFailedException.h +++ src/exceptions/OFDeleteWindowsRegistryValueFailedException.h @@ -23,13 +23,12 @@ #include OF_ASSUME_NONNULL_BEGIN /** - * @class OFDeleteWindowsRegistryValueFailedException \ - * OFDeleteWindowsRegistryValueFailedException.h \ - * ObjFW/OFDeleteWindowsRegistryValueFailedException.h + * @class OFDeleteWindowsRegistryValueFailedException + * OFDeleteWindowsRegistryValueFailedException.h ObjFW/ObjFW.h * * @brief An exception indicating that deleting a Windows registry value failed. */ @interface OFDeleteWindowsRegistryValueFailedException: OFException { Index: src/exceptions/OFEnumerationMutationException.h ================================================================== --- src/exceptions/OFEnumerationMutationException.h +++ src/exceptions/OFEnumerationMutationException.h @@ -20,13 +20,12 @@ #import "OFException.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFEnumerationMutationException \ - * OFEnumerationMutationException.h \ - * ObjFW/OFEnumerationMutationException.h + * @class OFEnumerationMutationException OFEnumerationMutationException.h + * ObjFW/ObjFW.h * * @brief An exception indicating that a mutation was detected during * enumeration. */ @interface OFEnumerationMutationException: OFException Index: src/exceptions/OFException.h ================================================================== --- src/exceptions/OFException.h +++ src/exceptions/OFException.h @@ -144,11 +144,11 @@ #ifndef EWOULDBLOCK # define EWOULDBLOCK EAGAIN #endif /** - * @class OFException OFException.h ObjFW/OFException.h + * @class OFException OFException.h ObjFW/ObjFW.h * * @brief The base class for all exceptions in ObjFW * * The OFException class is the base class for all exceptions in ObjFW, except * the OFAllocFailedException. Index: src/exceptions/OFGetCurrentDirectoryFailedException.h ================================================================== --- src/exceptions/OFGetCurrentDirectoryFailedException.h +++ src/exceptions/OFGetCurrentDirectoryFailedException.h @@ -20,13 +20,12 @@ #import "OFException.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFGetCurrentDirectoryFailedException \ - * OFGetCurrentDirectoryFailedException.h \ - * ObjFW/OFGetCurrentDirectoryFailedException.h + * @class OFGetCurrentDirectoryFailedException + * OFGetCurrentDirectoryFailedException.h ObjFW/ObjFW.h * * @brief An exception indicating that getting the current directory path * failed. */ @interface OFGetCurrentDirectoryFailedException: OFException Index: src/exceptions/OFGetItemAttributesFailedException.h ================================================================== --- src/exceptions/OFGetItemAttributesFailedException.h +++ src/exceptions/OFGetItemAttributesFailedException.h @@ -22,13 +22,12 @@ OF_ASSUME_NONNULL_BEGIN @class OFIRI; /** - * @class OFGetItemAttributesFailedException \ - * OFGetItemAttributesFailedException.h \ - * ObjFW/OFGetItemAttributesFailedException.h + * @class OFGetItemAttributesFailedException + * OFGetItemAttributesFailedException.h ObjFW/ObjFW.h * * @brief An exception indicating an item's attributes could not be retrieved. */ @interface OFGetItemAttributesFailedException: OFException { Index: src/exceptions/OFGetOptionFailedException.h ================================================================== --- src/exceptions/OFGetOptionFailedException.h +++ src/exceptions/OFGetOptionFailedException.h @@ -20,12 +20,11 @@ #import "OFException.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFGetOptionFailedException \ - * OFGetOptionFailedException.h ObjFW/OFGetOptionFailedException.h + * @class OFGetOptionFailedException OFGetOptionFailedException.h ObjFW/ObjFW.h * * @brief An exception indicating that getting an option for an object failed. */ @interface OFGetOptionFailedException: OFException { Index: src/exceptions/OFGetWindowsRegistryValueFailedException.h ================================================================== --- src/exceptions/OFGetWindowsRegistryValueFailedException.h +++ src/exceptions/OFGetWindowsRegistryValueFailedException.h @@ -23,13 +23,12 @@ #include OF_ASSUME_NONNULL_BEGIN /** - * @class OFGetWindowsRegistryValueFailedException \ - * OFGetWindowsRegistryValueFailedException.h \ - * ObjFW/OFGetWindowsRegistryValueFailedException.h + * @class OFGetWindowsRegistryValueFailedException + * OFGetWindowsRegistryValueFailedException.h ObjFW/ObjFW.h * * @brief An exception indicating that getting a Windows registry value failed. */ @interface OFGetWindowsRegistryValueFailedException: OFException { Index: src/exceptions/OFHTTPRequestFailedException.h ================================================================== --- src/exceptions/OFHTTPRequestFailedException.h +++ src/exceptions/OFHTTPRequestFailedException.h @@ -27,13 +27,12 @@ @class OFHTTPRequest; @class OFHTTPResponse; /** - * @class OFHTTPRequestFailedException \ - * OFHTTPRequestFailedException.h \ - * ObjFW/OFHTTPRequestFailedException.h + * @class OFHTTPRequestFailedException OFHTTPRequestFailedException.h + * ObjFW/ObjFW.h * * @brief An exception indicating that an HTTP request failed. */ @interface OFHTTPRequestFailedException: OFException { Index: src/exceptions/OFHashAlreadyCalculatedException.h ================================================================== --- src/exceptions/OFHashAlreadyCalculatedException.h +++ src/exceptions/OFHashAlreadyCalculatedException.h @@ -20,13 +20,12 @@ #import "OFException.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFHashAlreadyCalculatedException \ - * OFHashAlreadyCalculatedException.h \ - * ObjFW/OFHashAlreadyCalculatedException.h + * @class OFHashAlreadyCalculatedException OFHashAlreadyCalculatedException.h + * ObjFW/ObjFW.h * * @brief An exception indicating that the hash has already been calculated. */ @interface OFHashAlreadyCalculatedException: OFException { Index: src/exceptions/OFHashNotCalculatedException.h ================================================================== --- src/exceptions/OFHashNotCalculatedException.h +++ src/exceptions/OFHashNotCalculatedException.h @@ -20,12 +20,12 @@ #import "OFException.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFHashNotCalculatedException OFHashNotCalculatedException.h \ - * ObjFW/OFHashNotCalculatedException.h + * @class OFHashNotCalculatedException OFHashNotCalculatedException.h + * ObjFW/ObjFW.h * * @brief An exception indicating that the hash has not been calculated yet. */ @interface OFHashNotCalculatedException: OFException { Index: src/exceptions/OFInitializationFailedException.h ================================================================== --- src/exceptions/OFInitializationFailedException.h +++ src/exceptions/OFInitializationFailedException.h @@ -20,13 +20,12 @@ #import "OFException.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFInitializationFailedException \ - * OFInitializationFailedException.h \ - * ObjFW/OFInitializationFailedException.h + * @class OFInitializationFailedException OFInitializationFailedException.h + * ObjFW/ObjFW.h * * @brief An exception indicating that initializing something failed. */ @interface OFInitializationFailedException: OFException { Index: src/exceptions/OFInvalidArgumentException.h ================================================================== --- src/exceptions/OFInvalidArgumentException.h +++ src/exceptions/OFInvalidArgumentException.h @@ -20,12 +20,11 @@ #import "OFException.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFInvalidArgumentException \ - * OFInvalidArgumentException.h ObjFW/OFInvalidArgumentException.h + * @class OFInvalidArgumentException OFInvalidArgumentException.h ObjFW/ObjFW.h * * @brief An exception indicating that the argument is invalid for this method. */ @interface OFInvalidArgumentException: OFException { Index: src/exceptions/OFInvalidEncodingException.h ================================================================== --- src/exceptions/OFInvalidEncodingException.h +++ src/exceptions/OFInvalidEncodingException.h @@ -20,12 +20,11 @@ #import "OFException.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFInvalidEncodingException \ - * OFInvalidEncodingException.h ObjFW/OFInvalidEncodingException.h + * @class OFInvalidEncodingException OFInvalidEncodingException.h ObjFW/ObjFW.h * * @brief An exception indicating that the encoding is invalid for this object. */ @interface OFInvalidEncodingException: OFException { Index: src/exceptions/OFInvalidFormatException.h ================================================================== --- src/exceptions/OFInvalidFormatException.h +++ src/exceptions/OFInvalidFormatException.h @@ -20,12 +20,11 @@ #import "OFException.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFInvalidFormatException \ - * OFInvalidFormatException.h ObjFW/OFInvalidFormatException.h + * @class OFInvalidFormatException OFInvalidFormatException.h ObjFW/ObjFW.h * * @brief An exception indicating that the format is invalid. */ @interface OFInvalidFormatException: OFException { Index: src/exceptions/OFInvalidJSONException.h ================================================================== --- src/exceptions/OFInvalidJSONException.h +++ src/exceptions/OFInvalidJSONException.h @@ -20,12 +20,11 @@ #import "OFException.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFInvalidJSONException \ - * OFInvalidJSONException.h ObjFW/OFInvalidJSONException.h + * @class OFInvalidJSONException OFInvalidJSONException.h ObjFW/ObjFW.h * * @brief An exception indicating a JSON representation is invalid. */ @interface OFInvalidJSONException: OFException { Index: src/exceptions/OFInvalidServerResponseException.h ================================================================== --- src/exceptions/OFInvalidServerResponseException.h +++ src/exceptions/OFInvalidServerResponseException.h @@ -20,13 +20,12 @@ #import "OFException.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFInvalidServerResponseException \ - * OFInvalidServerResponseException.h \ - * ObjFW/OFInvalidServerResponseException.h + * @class OFInvalidServerResponseException OFInvalidServerResponseException.h + * ObjFW/ObjFW.h * * @brief An exception indicating that the server sent an invalid response. */ @interface OFInvalidServerResponseException: OFException { Index: src/exceptions/OFJoinThreadFailedException.h ================================================================== --- src/exceptions/OFJoinThreadFailedException.h +++ src/exceptions/OFJoinThreadFailedException.h @@ -26,12 +26,12 @@ OF_ASSUME_NONNULL_BEGIN @class OFThread; /** - * @class OFJoinThreadFailedException \ - * OFJoinThreadFailedException.h ObjFW/OFJoinThreadFailedException.h + * @class OFJoinThreadFailedException OFJoinThreadFailedException.h + * ObjFW/ObjFW.h * * @brief An exception indicating that joining a thread failed. */ @interface OFJoinThreadFailedException: OFException { Index: src/exceptions/OFLinkItemFailedException.h ================================================================== --- src/exceptions/OFLinkItemFailedException.h +++ src/exceptions/OFLinkItemFailedException.h @@ -22,12 +22,11 @@ OF_ASSUME_NONNULL_BEGIN @class OFIRI; /** - * @class OFLinkItemFailedException \ - * OFLinkItemFailedException.h ObjFW/OFLinkItemFailedException.h + * @class OFLinkItemFailedException OFLinkItemFailedException.h ObjFW/ObjFW.h * * @brief An exception indicating that creating a link failed. */ @interface OFLinkItemFailedException: OFException { Index: src/exceptions/OFListenOnSocketFailedException.h ================================================================== --- src/exceptions/OFListenOnSocketFailedException.h +++ src/exceptions/OFListenOnSocketFailedException.h @@ -24,13 +24,12 @@ #endif OF_ASSUME_NONNULL_BEGIN /** - * @class OFListenOnSocketFailedException \ - * OFListenOnSocketFailedException.h \ - * ObjFW/OFListenOnSocketFailedException.h + * @class OFListenOnSocketFailedException OFListenOnSocketFailedException.h + * ObjFW/ObjFW.h * * @brief An exception indicating that listening on the socket failed. */ @interface OFListenOnSocketFailedException: OFException { Index: src/exceptions/OFLoadPluginFailedException.h ================================================================== --- src/exceptions/OFLoadPluginFailedException.h +++ src/exceptions/OFLoadPluginFailedException.h @@ -20,12 +20,12 @@ #import "OFException.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFLoadPluginFailedException \ - * OFLoadPluginFailedException.h ObjFW/OFLoadPluginFailedException.h + * @class OFLoadPluginFailedException OFLoadPluginFailedException.h + * ObjFW/ObjFW.h * * @brief An exception indicating a plugin could not be loaded. */ @interface OFLoadPluginFailedException: OFException { Index: src/exceptions/OFLockFailedException.h ================================================================== --- src/exceptions/OFLockFailedException.h +++ src/exceptions/OFLockFailedException.h @@ -21,12 +21,11 @@ #import "OFLocking.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFLockFailedException \ - * OFLockFailedException.h ObjFW/OFLockFailedException.h + * @class OFLockFailedException OFLockFailedException.h ObjFW/ObjFW.h * * @brief An exception indicating that locking a lock failed. */ @interface OFLockFailedException: OFException { Index: src/exceptions/OFMalformedXMLException.h ================================================================== --- src/exceptions/OFMalformedXMLException.h +++ src/exceptions/OFMalformedXMLException.h @@ -22,12 +22,11 @@ @class OFXMLParser; OF_ASSUME_NONNULL_BEGIN /** - * @class OFMalformedXMLException \ - * OFMalformedXMLException.h ObjFW/OFMalformedXMLException.h + * @class OFMalformedXMLException OFMalformedXMLException.h ObjFW/ObjFW.h * * @brief An exception indicating that a parser encountered malformed XML. */ @interface OFMalformedXMLException: OFException { Index: src/exceptions/OFMoveItemFailedException.h ================================================================== --- src/exceptions/OFMoveItemFailedException.h +++ src/exceptions/OFMoveItemFailedException.h @@ -22,12 +22,11 @@ OF_ASSUME_NONNULL_BEGIN @class OFIRI; /** - * @class OFMoveItemFailedException \ - * OFMoveItemFailedException.h ObjFW/OFMoveItemFailedException.h + * @class OFMoveItemFailedException OFMoveItemFailedException.h ObjFW/ObjFW.h * * @brief An exception indicating that moving an item failed. */ @interface OFMoveItemFailedException: OFException { Index: src/exceptions/OFNotImplementedException.h ================================================================== --- src/exceptions/OFNotImplementedException.h +++ src/exceptions/OFNotImplementedException.h @@ -20,12 +20,11 @@ #import "OFException.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFNotImplementedException \ - * OFNotImplementedException.h ObjFW/OFNotImplementedException.h + * @class OFNotImplementedException OFNotImplementedException.h ObjFW/ObjFW.h * * @brief An exception indicating that a method or part of it is not * implemented. */ @interface OFNotImplementedException: OFException Index: src/exceptions/OFNotOpenException.h ================================================================== --- src/exceptions/OFNotOpenException.h +++ src/exceptions/OFNotOpenException.h @@ -20,11 +20,11 @@ #import "OFException.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFNotOpenException OFNotOpenException.h ObjFW/OFNotOpenException.h + * @class OFNotOpenException OFNotOpenException.h ObjFW/ObjFW.h * * @brief An exception indicating an object is not open, connected or bound. */ @interface OFNotOpenException: OFException { Index: src/exceptions/OFObserveKernelEventsFailedException.h ================================================================== --- src/exceptions/OFObserveKernelEventsFailedException.h +++ src/exceptions/OFObserveKernelEventsFailedException.h @@ -22,13 +22,12 @@ OF_ASSUME_NONNULL_BEGIN @class OFKernelEventObserver; /** - * @class OFObserveKernelEventsFailedException \ - * OFObserveKernelEventsFailedException.h \ - * ObjFW/OFObserveKernelEventsFailedException.h + * @class OFObserveKernelEventsFailedException + * OFObserveKernelEventsFailedException.h ObjFW/ObjFW.h * * @brief An exception indicating that observing failed. */ @interface OFObserveKernelEventsFailedException: OFException { Index: src/exceptions/OFOpenItemFailedException.h ================================================================== --- src/exceptions/OFOpenItemFailedException.h +++ src/exceptions/OFOpenItemFailedException.h @@ -22,12 +22,11 @@ OF_ASSUME_NONNULL_BEGIN @class OFIRI; /** - * @class OFOpenItemFailedException \ - * OFOpenItemFailedException.h ObjFW/OFOpenItemFailedException.h + * @class OFOpenItemFailedException OFOpenItemFailedException.h ObjFW/ObjFW.h * * @brief An exception indicating an item could not be opened. */ @interface OFOpenItemFailedException: OFException { Index: src/exceptions/OFOpenWindowsRegistryKeyFailedException.h ================================================================== --- src/exceptions/OFOpenWindowsRegistryKeyFailedException.h +++ src/exceptions/OFOpenWindowsRegistryKeyFailedException.h @@ -23,13 +23,12 @@ #include OF_ASSUME_NONNULL_BEGIN /** - * @class OFOpenWindowsRegistryKeyFailedException \ - * OFOpenWindowsRegistryKeyFailedException.h \ - * ObjFW/OFOpenWindowsRegistryKeyFailedException.h + * @class OFOpenWindowsRegistryKeyFailedException + * OFOpenWindowsRegistryKeyFailedException.h ObjFW/ObjFW.h * * @brief An exception indicating that opening a Windows registry key failed. */ @interface OFOpenWindowsRegistryKeyFailedException: OFException { Index: src/exceptions/OFOutOfMemoryException.h ================================================================== --- src/exceptions/OFOutOfMemoryException.h +++ src/exceptions/OFOutOfMemoryException.h @@ -20,12 +20,11 @@ #import "OFException.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFOutOfMemoryException \ - * OFOutOfMemoryException.h ObjFW/OFOutOfMemoryException.h + * @class OFOutOfMemoryException OFOutOfMemoryException.h ObjFW/ObjFW.h * * @brief An exception indicating there is not enough memory available. */ @interface OFOutOfMemoryException: OFException { Index: src/exceptions/OFOutOfRangeException.h ================================================================== --- src/exceptions/OFOutOfRangeException.h +++ src/exceptions/OFOutOfRangeException.h @@ -20,12 +20,11 @@ #import "OFException.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFOutOfRangeException \ - * OFOutOfRangeException.h ObjFW/OFOutOfRangeException.h + * @class OFOutOfRangeException OFOutOfRangeException.h ObjFW/ObjFW.h * * @brief An exception indicating the given value is out of range. */ @interface OFOutOfRangeException: OFException { Index: src/exceptions/OFReadFailedException.h ================================================================== --- src/exceptions/OFReadFailedException.h +++ src/exceptions/OFReadFailedException.h @@ -20,12 +20,11 @@ #import "OFReadOrWriteFailedException.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFReadFailedException \ - * OFReadFailedException.h ObjFW/OFReadFailedException.h + * @class OFReadFailedException OFReadFailedException.h ObjFW/ObjFW.h * * @brief An exception indicating that reading from an object failed. */ @interface OFReadFailedException: OFReadOrWriteFailedException { Index: src/exceptions/OFReadOrWriteFailedException.h ================================================================== --- src/exceptions/OFReadOrWriteFailedException.h +++ src/exceptions/OFReadOrWriteFailedException.h @@ -20,12 +20,12 @@ #import "OFException.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFReadOrWriteFailedException \ - * OFReadOrWriteFailedException.h ObjFW/OFReadOrWriteFailedException.h + * @class OFReadOrWriteFailedException OFReadOrWriteFailedException.h + * ObjFW/ObjFW.h * * @brief An exception indicating that reading from or writing to an object * failed. */ @interface OFReadOrWriteFailedException: OFException Index: src/exceptions/OFRemoveItemFailedException.h ================================================================== --- src/exceptions/OFRemoveItemFailedException.h +++ src/exceptions/OFRemoveItemFailedException.h @@ -22,12 +22,12 @@ OF_ASSUME_NONNULL_BEGIN @class OFIRI; /** - * @class OFRemoveItemFailedException \ - * OFRemoveItemFailedException.h ObjFW/OFRemoveItemFailedException.h + * @class OFRemoveItemFailedException OFRemoveItemFailedException.h + * ObjFW/ObjFW.h * * @brief An exception indicating that removing an item failed. */ @interface OFRemoveItemFailedException: OFException { Index: src/exceptions/OFResolveHostFailedException.h ================================================================== --- src/exceptions/OFResolveHostFailedException.h +++ src/exceptions/OFResolveHostFailedException.h @@ -21,12 +21,12 @@ #import "OFDNSResolver.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFResolveHostFailedException \ - * OFResolveHostFailedException.h ObjFW/OFResolveHostFailedException.h + * @class OFResolveHostFailedException OFResolveHostFailedException.h + * ObjFW/ObjFW.h * * @brief An exception indicating that resolving a host failed. */ @interface OFResolveHostFailedException: OFException { Index: src/exceptions/OFSeekFailedException.h ================================================================== --- src/exceptions/OFSeekFailedException.h +++ src/exceptions/OFSeekFailedException.h @@ -21,12 +21,11 @@ #import "OFSeekableStream.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFSeekFailedException \ - * OFSeekFailedException.h ObjFW/OFSeekFailedException.h + * @class OFSeekFailedException OFSeekFailedException.h ObjFW/ObjFW.h * * @brief An exception indicating that seeking in a stream failed. */ @interface OFSeekFailedException: OFException { Index: src/exceptions/OFSetItemAttributesFailedException.h ================================================================== --- src/exceptions/OFSetItemAttributesFailedException.h +++ src/exceptions/OFSetItemAttributesFailedException.h @@ -23,13 +23,12 @@ OF_ASSUME_NONNULL_BEGIN @class OFIRI; /** - * @class OFSetItemAttributesFailedException \ - * OFSetItemAttributesFailedException.h \ - * ObjFW/OFSetItemAttributesFailedException.h + * @class OFSetItemAttributesFailedException + * OFSetItemAttributesFailedException.h ObjFW/ObjFW.h * * @brief An exception indicating an item's attributes could not be set. */ @interface OFSetItemAttributesFailedException: OFException { Index: src/exceptions/OFSetOptionFailedException.h ================================================================== --- src/exceptions/OFSetOptionFailedException.h +++ src/exceptions/OFSetOptionFailedException.h @@ -20,12 +20,11 @@ #import "OFException.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFSetOptionFailedException \ - * OFSetOptionFailedException.h ObjFW/OFSetOptionFailedException.h + * @class OFSetOptionFailedException OFSetOptionFailedException.h ObjFW/ObjFW.h * * @brief An exception indicating that setting an option for an object failed. */ @interface OFSetOptionFailedException: OFException { Index: src/exceptions/OFSetWindowsRegistryValueFailedException.h ================================================================== --- src/exceptions/OFSetWindowsRegistryValueFailedException.h +++ src/exceptions/OFSetWindowsRegistryValueFailedException.h @@ -23,13 +23,12 @@ #include OF_ASSUME_NONNULL_BEGIN /** - * @class OFSetWindowsRegistryValueFailedException \ - * OFSetWindowsRegistryValueFailedException.h \ - * ObjFW/OFSetWindowsRegistryValueFailedException.h + * @class OFSetWindowsRegistryValueFailedException + * OFSetWindowsRegistryValueFailedException.h ObjFW/ObjFW.h * * @brief An exception indicating that setting a Windows registry value failed. */ @interface OFSetWindowsRegistryValueFailedException: OFException { Index: src/exceptions/OFSignalConditionFailedException.h ================================================================== --- src/exceptions/OFSignalConditionFailedException.h +++ src/exceptions/OFSignalConditionFailedException.h @@ -26,13 +26,12 @@ OF_ASSUME_NONNULL_BEGIN @class OFCondition; /** - * @class OFSignalConditionFailedException \ - * OFSignalConditionFailedException.h \ - * ObjFW/OFSignalConditionFailedException.h + * @class OFSignalConditionFailedException OFSignalConditionFailedException.h + * ObjFW/ObjFW.h * * @brief An exception indicating signaling a condition failed. */ @interface OFSignalConditionFailedException: OFException { Index: src/exceptions/OFStartThreadFailedException.h ================================================================== --- src/exceptions/OFStartThreadFailedException.h +++ src/exceptions/OFStartThreadFailedException.h @@ -26,12 +26,12 @@ OF_ASSUME_NONNULL_BEGIN @class OFThread; /** - * @class OFStartThreadFailedException \ - * OFStartThreadFailedException.h ObjFW/OFStartThreadFailedException.h + * @class OFStartThreadFailedException OFStartThreadFailedException.h + * ObjFW/ObjFW.h * * @brief An exception indicating that starting a thread failed. */ @interface OFStartThreadFailedException: OFException { Index: src/exceptions/OFStillLockedException.h ================================================================== --- src/exceptions/OFStillLockedException.h +++ src/exceptions/OFStillLockedException.h @@ -21,12 +21,11 @@ #import "OFLocking.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFStillLockedException \ - * OFStillLockedException.h ObjFW/OFStillLockedException.h + * @class OFStillLockedException OFStillLockedException.h ObjFW/ObjFW.h * * @brief An exception indicating that a lock is still locked. */ @interface OFStillLockedException: OFException { Index: src/exceptions/OFTLSHandshakeFailedException.h ================================================================== --- src/exceptions/OFTLSHandshakeFailedException.h +++ src/exceptions/OFTLSHandshakeFailedException.h @@ -34,12 +34,12 @@ #ifdef __cplusplus } #endif /** - * @class OFTLSHandshakeFailedException \ - * OFTLSHandshakeFailedException.h ObjFW/OFTLSHandshakeFailedException.h + * @class OFTLSHandshakeFailedException OFTLSHandshakeFailedException.h + * ObjFW/ObjFW.h * * @brief An exception indicating that a TLS handshake. */ @interface OFTLSHandshakeFailedException: OFException { Index: src/exceptions/OFThreadStillRunningException.h ================================================================== --- src/exceptions/OFThreadStillRunningException.h +++ src/exceptions/OFThreadStillRunningException.h @@ -26,12 +26,12 @@ OF_ASSUME_NONNULL_BEGIN @class OFThread; /** - * @class OFThreadStillRunningException \ - * OFThreadStillRunningException.h ObjFW/OFThreadStillRunningException.h + * @class OFThreadStillRunningException OFThreadStillRunningException.h + * ObjFW/ObjFW.h * * @brief An exception indicating that a thread is still running. */ @interface OFThreadStillRunningException: OFException { Index: src/exceptions/OFTruncatedDataException.h ================================================================== --- src/exceptions/OFTruncatedDataException.h +++ src/exceptions/OFTruncatedDataException.h @@ -20,12 +20,11 @@ #import "OFException.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFTruncatedDataException \ - * OFTruncatedDataException.h ObjFW/OFTruncatedDataException.h + * @class OFTruncatedDataException OFTruncatedDataException.h ObjFW/ObjFW.h * * @brief An exception indicating that data was truncated while it should not * have been truncated. */ @interface OFTruncatedDataException: OFException Index: src/exceptions/OFUnboundNamespaceException.h ================================================================== --- src/exceptions/OFUnboundNamespaceException.h +++ src/exceptions/OFUnboundNamespaceException.h @@ -22,12 +22,12 @@ OF_ASSUME_NONNULL_BEGIN @class OFXMLElement; /** - * @class OFUnboundNamespaceException \ - * OFUnboundNamespaceException.h ObjFW/OFUnboundNamespaceException.h + * @class OFUnboundNamespaceException OFUnboundNamespaceException.h + * ObjFW/ObjFW.h * * @brief An exception indicating an attempt to use an unbound namespace. */ @interface OFUnboundNamespaceException: OFException { Index: src/exceptions/OFUnboundPrefixException.h ================================================================== --- src/exceptions/OFUnboundPrefixException.h +++ src/exceptions/OFUnboundPrefixException.h @@ -22,12 +22,11 @@ OF_ASSUME_NONNULL_BEGIN @class OFXMLParser; /** - * @class OFUnboundPrefixException \ - * OFUnboundPrefixException.h ObjFW/OFUnboundPrefixException.h + * @class OFUnboundPrefixException OFUnboundPrefixException.h ObjFW/ObjFW.h * * @brief An exception indicating an attempt to use an unbound prefix. */ @interface OFUnboundPrefixException: OFException { Index: src/exceptions/OFUndefinedKeyException.h ================================================================== --- src/exceptions/OFUndefinedKeyException.h +++ src/exceptions/OFUndefinedKeyException.h @@ -20,12 +20,11 @@ #import "OFException.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFUndefinedKeyException \ - * OFUndefinedKeyException.h ObjFW/OFUndefinedKeyException.h + * @class OFUndefinedKeyException OFUndefinedKeyException.h ObjFW/ObjFW.h * * @brief An exception indicating that a key is undefined (e.g. for Key Value * Coding). */ @interface OFUndefinedKeyException: OFException Index: src/exceptions/OFUnknownXMLEntityException.h ================================================================== --- src/exceptions/OFUnknownXMLEntityException.h +++ src/exceptions/OFUnknownXMLEntityException.h @@ -20,12 +20,12 @@ #import "OFException.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFUnknownXMLEntityException \ - * OFUnknownXMLEntityException.h ObjFW/OFUnknownXMLEntityException.h + * @class OFUnknownXMLEntityException OFUnknownXMLEntityException.h + * ObjFW/ObjFW.h * * @brief An exception indicating that a parser encountered an unknown XML * entity. */ @interface OFUnknownXMLEntityException: OFException Index: src/exceptions/OFUnlockFailedException.h ================================================================== --- src/exceptions/OFUnlockFailedException.h +++ src/exceptions/OFUnlockFailedException.h @@ -21,12 +21,11 @@ #import "OFLocking.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFUnlockFailedException \ - * OFUnlockFailedException.h ObjFW/OFUnlockFailedException.h + * @class OFUnlockFailedException OFUnlockFailedException.h ObjFW/ObjFW.h * * @brief An exception indicating that unlocking a lock failed. */ @interface OFUnlockFailedException: OFException { Index: src/exceptions/OFUnsupportedProtocolException.h ================================================================== --- src/exceptions/OFUnsupportedProtocolException.h +++ src/exceptions/OFUnsupportedProtocolException.h @@ -22,13 +22,12 @@ OF_ASSUME_NONNULL_BEGIN @class OFIRI; /** - * @class OFUnsupportedProtocolException \ - * OFUnsupportedProtocolException.h \ - * ObjFW/OFUnsupportedProtocolException.h + * @class OFUnsupportedProtocolException OFUnsupportedProtocolException.h + * ObjFW/ObjFW.h * * @brief An exception indicating that the protocol specified by the IRI is not * supported. */ @interface OFUnsupportedProtocolException: OFException Index: src/exceptions/OFUnsupportedVersionException.h ================================================================== --- src/exceptions/OFUnsupportedVersionException.h +++ src/exceptions/OFUnsupportedVersionException.h @@ -20,12 +20,12 @@ #import "OFException.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFUnsupportedVersionException \ - * OFUnsupportedVersionException.h ObjFW/OFUnsupportedVersionException.h + * @class OFUnsupportedVersionException OFUnsupportedVersionException.h + * ObjFW/ObjFW.h * * @brief An exception indicating that the specified version of the format or * protocol is not supported. */ @interface OFUnsupportedVersionException: OFException Index: src/exceptions/OFWaitForConditionFailedException.h ================================================================== --- src/exceptions/OFWaitForConditionFailedException.h +++ src/exceptions/OFWaitForConditionFailedException.h @@ -26,13 +26,12 @@ OF_ASSUME_NONNULL_BEGIN @class OFCondition; /** - * @class OFWaitForConditionFailedException \ - * OFWaitForConditionFailedException.h \ - * ObjFW/OFWaitForConditionFailedException.h + * @class OFWaitForConditionFailedException OFWaitForConditionFailedException.h + * ObjFW/ObjFW.h * * @brief An exception indicating waiting for a condition failed. */ @interface OFWaitForConditionFailedException: OFException { Index: src/exceptions/OFWriteFailedException.h ================================================================== --- src/exceptions/OFWriteFailedException.h +++ src/exceptions/OFWriteFailedException.h @@ -20,12 +20,11 @@ #import "OFReadOrWriteFailedException.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OFWriteFailedException \ - * OFWriteFailedException.h ObjFW/OFWriteFailedException.h + * @class OFWriteFailedException OFWriteFailedException.h ObjFW/ObjFW.h * * @brief An exception indicating that writing to an object failed. */ @interface OFWriteFailedException: OFReadOrWriteFailedException { Index: src/hid/OHCombinedJoyCons.h ================================================================== --- src/hid/OHCombinedJoyCons.h +++ src/hid/OHCombinedJoyCons.h @@ -24,11 +24,11 @@ @class OHGameController; @class OHGameControllerButton; @class OHGameControllerDirectionalPad; /** - * @class OHCombinedJoyCons OHCombinedJoyCons.h ObjFWHID/OHCombinedJoyCons.h + * @class OHCombinedJoyCons OHCombinedJoyCons.h ObjFWHID/ObjFWHID.h * * @brief Combines a left and a right Joy-Con into a gamepad. */ OF_SUBCLASSING_RESTRICTED @interface OHCombinedJoyCons: OFObject Index: src/hid/OHExtendedGamepad.h ================================================================== --- src/hid/OHExtendedGamepad.h +++ src/hid/OHExtendedGamepad.h @@ -20,11 +20,11 @@ #import "OHGamepad.h" OF_ASSUME_NONNULL_BEGIN /** - * @protocol OHExtendedGamepad OHExtendedGamepad.h ObjFWHID/OHExtendedGamepad.h + * @protocol OHExtendedGamepad OHExtendedGamepad.h ObjFWHID/ObjFWHID.h * * @brief A game controller profile representing a gamepad. */ @protocol OHExtendedGamepad /** Index: src/hid/OHGameController.h ================================================================== --- src/hid/OHGameController.h +++ src/hid/OHGameController.h @@ -37,11 +37,11 @@ @class OFArray OF_GENERIC(ObjectType); @class OFNumber; @class OHGameControllerProfile; /** - * @class OHGameController OHGameController.h ObjFWHID/OHGameController.h + * @class OHGameController OHGameController.h ObjFWHID/ObjFWHID.h * * @brief A class for reading state from a game controller. */ @interface OHGameController: OFObject { Index: src/hid/OHGameControllerAxis.h ================================================================== --- src/hid/OHGameControllerAxis.h +++ src/hid/OHGameControllerAxis.h @@ -20,12 +20,11 @@ #import "OHGameControllerElement.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OHGameControllerAxis \ - * OHGameControllerAxis.h ObjFWHID/OHGameControllerAxis.h + * @class OHGameControllerAxis OHGameControllerAxis.h ObjFWHID/ObjFWHID.h * * @brief An axis of a game controller. */ @interface OHGameControllerAxis: OHGameControllerElement { Index: src/hid/OHGameControllerButton.h ================================================================== --- src/hid/OHGameControllerButton.h +++ src/hid/OHGameControllerButton.h @@ -20,12 +20,11 @@ #import "OHGameControllerElement.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OHGameControllerButton \ - * OHGameControllerButton.h ObjFWHID/OHGameControllerButton.h + * @class OHGameControllerButton OHGameControllerButton.h ObjFWHID/ObjFWHID.h * * @brief A button of a game controller. */ @interface OHGameControllerButton: OHGameControllerElement { Index: src/hid/OHGameControllerDirectionalPad.h ================================================================== --- src/hid/OHGameControllerDirectionalPad.h +++ src/hid/OHGameControllerDirectionalPad.h @@ -22,13 +22,12 @@ #import "OHGameControllerButton.h" OF_ASSUME_NONNULL_BEGIN /** - * @class OHGameControllerDirectionalPad \ - * OHGameControllerDirectionalPad.h - * ObjFWHID/OHGameControllerDirectionalPad.h + * @class OHGameControllerDirectionalPad OHGameControllerDirectionalPad.h + * ObjFWHID/ObjFWID.h * * @brief An directional pad or thumb stick of a game controller. */ OF_SUBCLASSING_RESTRICTED @interface OHGameControllerDirectionalPad: OHGameControllerElement Index: src/hid/OHGameControllerElement.h ================================================================== --- src/hid/OHGameControllerElement.h +++ src/hid/OHGameControllerElement.h @@ -30,12 +30,11 @@ #endif OF_ASSUME_NONNULL_BEGIN /** - * @class OHGameControllerElement \ - * OHGameControllerElement.h ObjFWHID/OHGameControllerElement.h + * @class OHGameControllerElement OHGameControllerElement.h ObjFWHID/ObjFWHID.h * * @brief An element of a game controller, e.g. a button, an axis or a * directional pad. */ @interface OHGameControllerElement: OFObject Index: src/hid/OHGameControllerProfile.h ================================================================== --- src/hid/OHGameControllerProfile.h +++ src/hid/OHGameControllerProfile.h @@ -35,12 +35,12 @@ @class OHGameControllerAxis; @class OHGameControllerButton; @class OHGameControllerDirectionalPad; /** - * @protocol OHGameControllerProfile \ - * OHGameControllerProfile.h ObjFWHID/OHGameControllerProfile.h + * @protocol OHGameControllerProfile OHGameControllerProfile.h + * ObjFWHID/ObjFWHID.h * * @brief A profile for a @ref OHGameController. */ @protocol OHGameControllerProfile /** Index: src/hid/OHGamepad.h ================================================================== --- src/hid/OHGamepad.h +++ src/hid/OHGamepad.h @@ -20,11 +20,11 @@ #import "OHGameControllerProfile.h" OF_ASSUME_NONNULL_BEGIN /** - * @protocol OHGamepad OHGamepad.h ObjFWHID/OHGamepad.h + * @protocol OHGamepad OHGamepad.h ObjFWHID/ObjFWHID.h * * @brief A game controller profile representing a gamepad. */ @protocol OHGamepad /**