scuffed-code/icu4c/source/samples/XMLConverter/XMLConverter.hpp
Helena Chapman 3aaa52af8d ICU-161 updated the copyright notices.
X-SVN-Rev: 596
2000-01-15 02:00:06 +00:00

18 lines
509 B
C++

/**********************************************************************
* 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;
}