04e231b601
X-SVN-Rev: 10672
19 lines
491 B
C++
19 lines
491 B
C++
#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);
|
|
}; |