ObjFW  Check-in [44adc37c7b]

Overview
Comment:Document of_std{in,out,err} in OFStdIOStream.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 44adc37c7b7fca62f9358b798594225f0e0c811167f3e28587f413557197499d
User & Date: js on 2013-06-30 23:25:12
Other Links: manifest | tags
Context
2013-06-30
23:45
Relink tests if libobjfw.a changed. check-in: fa9d37e581 user: js tags: trunk
23:25
Document of_std{in,out,err} in OFStdIOStream. check-in: 44adc37c7b user: js tags: trunk
19:13
configure: Check for dladdr(). check-in: e0f421b523 user: js tags: trunk
Changes

Modified src/OFStdIOStream.h from [a177a89d97] to [cff734a988].

14
15
16
17
18
19
20



21
22
23
24
25
26
27
 * file.
 */

#import "OFStream.h"

/*!
 * @brief A class for providing standard input, output and error as OFStream.



 */
@interface OFStdIOStream: OFStream
{
	int  _fd;
	bool _atEndOfStream;
}








>
>
>







14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
 * file.
 */

#import "OFStream.h"

/*!
 * @brief A class for providing standard input, output and error as OFStream.
 *
 * The global variables @ref of_stdin, @ref of_stdout and @ref of_stderr are
 * instances of this class and need no initialization.
 */
@interface OFStdIOStream: OFStream
{
	int  _fd;
	bool _atEndOfStream;
}