DCL 3.7.4
Loading...
Searching...
No Matches
OutputStream.cpp File Reference
#include <dcl/Object.h>
#include <dcl/Numeric.h>
#include <dcl/OutputStream.h>

Go to the source code of this file.

Functions

__DCL_BEGIN_NAMESPACE IMPLEMENT_CLASSINFO (OutputStream, Object) void OutputStream
DCLCAPI OutputStreamoperator<< (OutputStream &out, const __endl &) __DCL_THROWS1(IOException *)

Variables

const struct __endl endl

Function Documentation

◆ IMPLEMENT_CLASSINFO()

__DCL_BEGIN_NAMESPACE IMPLEMENT_CLASSINFO ( OutputStream ,
Object  )

Definition at line 24 of file OutputStream.cpp.

28{
29}

◆ operator<<()

DCLCAPI OutputStream & operator<< ( OutputStream & out,
const __endl &  )

Definition at line 58 of file OutputStream.cpp.

60{
61 out.write("\n", 1);
62 out.flush();
63 return out;
64}

Variable Documentation

◆ endl

const struct __endl endl

Definition at line 66 of file OutputStream.cpp.