ObjFW  Diff

Differences From Artifact [a177a89d97]:

To Artifact [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;
}