ObjFW  Check-in [6a25d1d677]

Overview
Comment:Add a few private methods to the headers to have type checking.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 6a25d1d6771e4b68781b96137d123c5081a0fdcd55429bb92e63713514fa68ab
User & Date: js on 2011-09-19 16:40:52
Other Links: manifest | tags
Context
2011-09-19
19:12
Make it possible to use an OFStream as a key for a dictionary. check-in: 9aa9d6d075 user: js tags: trunk
16:40
Add a few private methods to the headers to have type checking. check-in: 6a25d1d677 user: js tags: trunk
16:34
Rename -[allocMemoryForNItems:withSize:] and friends.
It is now -[allocMemoryForNItems:ofSize:].
check-in: f173477bef user: js tags: trunk
Changes

Modified src/OFStream.h from [3697389637] to [d01ccdc23f].

802
803
804
805
806
807
808




809
810
811

/**
 * \brief Closes the stream.
 */
- (void)close;

/// \cond internal




- (BOOL)_isWaitingForDelimiter;
/// \endcond
@end







>
>
>
>



802
803
804
805
806
807
808
809
810
811
812
813
814
815

/**
 * \brief Closes the stream.
 */
- (void)close;

/// \cond internal
- (size_t)_readNBytes: (size_t)length
	   intoBuffer: (void*)buffer;
- (void)_writeNBytes: (size_t)length
	  fromBuffer: (const void*)buffer;
- (BOOL)_isWaitingForDelimiter;
/// \endcond
@end