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

Go to the source code of this file.

Functions

__DCL_BEGIN_NAMESPACE IMPLEMENT_CLASSINFO (XWriter, Writer) String XWriter

Function Documentation

◆ IMPLEMENT_CLASSINFO()

__DCL_BEGIN_NAMESPACE IMPLEMENT_CLASSINFO ( XWriter ,
Writer  )

Definition at line 15 of file XWriter.cpp.

18{
19 StringBuilder r = className() + __T("(");
20 if (__writer)
21 r += __writer->toString();
22 else
23 r += __T("null");
24 r += __T(")");
25
26 return r;
27}
28
29XWriter::XWriter(Writer* __destroy__ _pWriter)
30{
31 __writer = _pWriter;
32}
#define __destroy__
Definition Config.h:363
#define __T(str)
Definition Object.h:44
ByteString r
Writer * __writer
Definition XWriter.h:114