DCL 4.0
Loading...
Searching...
No Matches
Writer.cpp File Reference
#include <dcl/Writer.h>

Go to the source code of this file.

Functions

__DCL_BEGIN_NAMESPACE IMPLEMENT_CLASSINFO (Writer, Object) void Writer
DCLCAPI Writeroperator<< (Writer &_out, const __endl &) __DCL_THROWS1(IOException *)

Function Documentation

◆ IMPLEMENT_CLASSINFO()

__DCL_BEGIN_NAMESPACE IMPLEMENT_CLASSINFO ( Writer ,
Object  )

Definition at line 18 of file Writer.cpp.

22{
23}

◆ operator<<()

DCLCAPI Writer & operator<< ( Writer & _out,
const __endl &  )

Definition at line 52 of file Writer.cpp.

54{
55 _out.write(L"\n", 1);
56 _out.flush();
57 return _out;
58}