home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / qt3_emx.zip / include / qtextcodecfactory.h < prev    next >
C/C++ Source or Header  |  2001-07-13  |  360b  |  22 lines

  1. #ifndef QTEXTCODECFACTORY_H
  2. #define QTEXTCODECFACTORY_H
  3.  
  4. #ifndef QT_H
  5. #include "qstringlist.h"
  6. #endif // QT_H
  7.  
  8. #ifndef QT_NO_TEXTCODEC
  9.  
  10. class QTextCodec;
  11.  
  12. class Q_EXPORT QTextCodecFactory
  13. {
  14. public:
  15.     static QTextCodec *createForName( const QString & );
  16.     static QTextCodec *createForMib( int );
  17. };
  18.  
  19. #endif // QT_NO_TEXTCODEC
  20.  
  21. #endif // QTEXTCODECFACTORY_H
  22.