3aaa52af8d
X-SVN-Rev: 596
18 lines
509 B
C++
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;
|
|
}
|