##// END OF EJS Templates
Added an example QFileImportInterface which doesn't work yet!...
Added an example QFileImportInterface which doesn't work yet! git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@42 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r7:404e8f96a20b
r7:404e8f96a20b
Show More
QFileImportInterface.h
20 lines | 625 B | text/x-c | CLexer
#ifndef QFILEIMPORTINTERFACE_H
#define QFILEIMPORTINTERFACE_H
#include <PythonQtImportFileInterface.h>
/** Under Construction : This does not work yet.
*/
class QFileImportInterface : public PythonQtImportFileInterface {
public:
QFileImportInterface();
~QFileImportInterface();
QByteArray readFileAsBytes (const QString &filename);
QByteArray readSourceFile (const QString &filename, bool &ok);
bool exists (const QString &filename);
QDateTime lastModifiedDate (const QString &filename);
private:
PythonQtImportFileInterface *m_oldInterface;
};
#endif // #ifndef QFILEIMPORTINTERFACE_H