blob: 67f2e06ef4ee8bcf429eb07b04e2ee0864ef8cce [file] [log] [blame]
/**********************************************************************
* Copyright (C) 1998-2000, International Business Machines Corporation
* and others. All Rights Reserved.
**********************************************************************/
// XMLConverter.hpp
class XMLConverter
{
public :
XMLConverter(FILE* inputFile, const char* encodingType, FILE* outputFile);
~XMLConverter();
int convert();
private:
FILE* fInputFile;
FILE* fOutputFile;
const char* fEncodingType;
}