-rw-r--r-- | library/backend/qfiledirect_p.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/library/backend/qfiledirect_p.h b/library/backend/qfiledirect_p.h index fc29ac5..3ade622 100644 --- a/library/backend/qfiledirect_p.h +++ b/library/backend/qfiledirect_p.h @@ -12,25 +12,26 @@ ** PURPOSE.
**
** email sales@trolltech.com for information about Qtopia License
** Agreements.
**
** Contact info@trolltech.com if any conditions of this licensing are
** not clear to you.
**
**********************************************************************/
#ifndef QFILE_DIRECT_H
#define QFILE_DIRECT_H
#include <qfile.h>
#include <qpe/qpcglobal.h>
class QPC_EXPORT QFileDirect : public QFile
{
public:
QFileDirect() : QFile() { }
QFileDirect( const QString &name ) : QFile(name) { }
FILE *directHandle() { return fh; }
};
-#endif
\ No newline at end of file +#endif
+
|