scuffed-code/icu4c/source/samples/xml2txt/DOMPrintFormatTarget.h
Vladimir Weinstein 89628f1df9 ICU-2107 added copyright notices
X-SVN-Rev: 10722
2002-12-18 08:31:34 +00:00

34 lines
1.2 KiB
C++

/******************************************************************************
* Copyright (C) 2002, International Business Machines Corporation and
* others. All Rights Reserved.
******************************************************************************/
#ifndef DOMPRINTFORMATTARGET_H_
#define DOMPRINTFORMATTARGET_H_
#include "ChildName.h"
#include <fstream.h>
class DOMPrintFormatTarget : public XMLFormatTarget
{
private:
char* fileName;
public:
DOMPrintFormatTarget();
DOMPrintFormatTarget(char* fileName);
~DOMPrintFormatTarget();
// -----------------------------------------------------------------------
// Implementations of the format target interface
// -----------------------------------------------------------------------
void writeChars(const XMLByte* const toWrite,
const unsigned int count,
XMLFormatter * const formatter);
private:
// -----------------------------------------------------------------------
// Unimplemented methods.
// -----------------------------------------------------------------------
DOMPrintFormatTarget(const DOMPrintFormatTarget& other);
void operator=(const DOMPrintFormatTarget& rhs);
};
#endif