]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/samples/xml2txt/DOMPrintFormatTarget.h
ICU-6.2.4.tar.gz
[apple/icu.git] / icuSources / samples / xml2txt / DOMPrintFormatTarget.h
diff --git a/icuSources/samples/xml2txt/DOMPrintFormatTarget.h b/icuSources/samples/xml2txt/DOMPrintFormatTarget.h
deleted file mode 100644 (file)
index 650bfb1..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-/******************************************************************************
- * 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