]> git.saurik.com Git - apple/icu.git/blob - icuSources/samples/xml2txt/DOMPrintFormatTarget.cpp
ICU-3.13.tar.gz
[apple/icu.git] / 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"
6
7 DOMPrintFormatTarget::DOMPrintFormatTarget() {
8
9 };
10
11 DOMPrintFormatTarget::DOMPrintFormatTarget(char* fileName) {
12 this->fileName = fileName;
13 }
14
15 DOMPrintFormatTarget::~DOMPrintFormatTarget() {};
16
17 void DOMPrintFormatTarget :: writeChars(const XMLByte* const toWrite,
18 const unsigned int count,
19 XMLFormatter * const formatter)
20 {
21 ofstream ofile( fileName, ios::app);
22 ofile.write((char *) toWrite, (int) count);
23 };