DCL 3.7.4
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 16 of file XWriter.cpp.

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