89628f1df9
X-SVN-Rev: 10722
24 lines
756 B
C++
24 lines
756 B
C++
/******************************************************************************
|
|
* Copyright (C) 2002, International Business Machines Corporation and
|
|
* others. All Rights Reserved.
|
|
******************************************************************************/
|
|
#include "DOMPrintFormatTarget.h"
|
|
|
|
DOMPrintFormatTarget::DOMPrintFormatTarget() {
|
|
|
|
};
|
|
|
|
DOMPrintFormatTarget::DOMPrintFormatTarget(char* fileName) {
|
|
this->fileName = fileName;
|
|
}
|
|
|
|
DOMPrintFormatTarget::~DOMPrintFormatTarget() {};
|
|
|
|
void DOMPrintFormatTarget :: writeChars(const XMLByte* const toWrite,
|
|
const unsigned int count,
|
|
XMLFormatter * const formatter)
|
|
{
|
|
ofstream ofile( fileName, ios::app);
|
|
ofile.write((char *) toWrite, (int) count);
|
|
};
|