]>
git.saurik.com Git - apple/icu.git/blob - icuSources/samples/xml2txt/DOMPrintFormatTarget.cpp
1 /******************************************************************************
2 * Copyright (C) 2002, International Business Machines Corporation and
3 * others. All Rights Reserved.
4 ******************************************************************************/
5 #include "DOMPrintFormatTarget.h"
7 DOMPrintFormatTarget::DOMPrintFormatTarget() {
11 DOMPrintFormatTarget::DOMPrintFormatTarget(char* fileName
) {
12 this->fileName
= fileName
;
15 DOMPrintFormatTarget::~DOMPrintFormatTarget() {};
17 void DOMPrintFormatTarget :: writeChars(const XMLByte
* const toWrite
,
18 const unsigned int count
,
19 XMLFormatter
* const formatter
)
21 ofstream
ofile( fileName
, ios::app
);
22 ofile
.write((char *) toWrite
, (int) count
);