#ifndef PYTHONQTWRAPPER_QTEXTCODECPLUGIN_H #define PYTHONQTWRAPPER_QTEXTCODECPLUGIN_H #include #include #include #include #include #include #include #include #include class PythonQtWrapper_QTextCodecPlugin : public QObject { Q_OBJECT public: public slots: void delete_QTextCodecPlugin(QTextCodecPlugin* obj) { delete obj; } QList aliases(QTextCodecPlugin* theWrappedObject) const; QTextCodec* createForMib(QTextCodecPlugin* theWrappedObject, int mib); QTextCodec* createForName(QTextCodecPlugin* theWrappedObject, const QByteArray& name); QList mibEnums(QTextCodecPlugin* theWrappedObject) const; QList names(QTextCodecPlugin* theWrappedObject) const; }; #endif // PYTHONQTWRAPPER_QTEXTCODECPLUGIN_H