DCL 4.0
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

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

Variables

const struct __endl __endl__

Function Documentation

◆ endl()

DCLCAPI const __endl endl ( )

Definition at line 69 of file OutputStream.cpp.

69 {
70 return __endl__;
71}
const struct __endl __endl__

◆ IMPLEMENT_CLASSINFO()

IMPLEMENT_CLASSINFO ( OutputStream ,
Object  )

Definition at line 22 of file OutputStream.cpp.

26{
27}

◆ operator<<()

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

Definition at line 56 of file OutputStream.cpp.

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

Variable Documentation

◆ __endl__

const struct __endl __endl__

Definition at line 68 of file OutputStream.cpp.