diff options
Diffstat (limited to 'qtinterface/tqiodevice.cpp')
-rw-r--r-- | qtinterface/tqiodevice.cpp | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/qtinterface/tqiodevice.cpp b/qtinterface/tqiodevice.cpp index 2af85dc..7a70d3d 100644 --- a/qtinterface/tqiodevice.cpp +++ b/qtinterface/tqiodevice.cpp @@ -21,3 +21,41 @@ Boston, MA 02110-1301, USA. #include <tqt.h> #include <tqiodevice.h> + +#ifdef USE_QT4 + +void QIODevice::setState( int s ) { + if (s == IO_Open) { + if (isOpen() == false) { + open(openMode()); + } + } +} + +void QIODevice::setFlags( int f ) { + setOpenMode((OpenMode)f); +} + +void QIODevice::setStatus( int s ) { + #warning "QIODevice::setStatus is unimplemented!" +} + +// TQIODevice::TQIODevice() : QIODevice() {} +// +// qint64 TQIODevice::readData(char *data, qint64 maxlen) { +// return read(data, maxlen); +// } +// +// qint64 TQIODevice::writeData(const char *data, qint64 len) { +// return write(data, len); +// } + +// qint64 QIODevice::readData(char *data, qint64 maxlen) { +// return read(data, maxlen); +// } +// +// qint64 QIODevice::writeData(const char *data, qint64 len) { +// return write(data, len); +// } + +#endif // USE_QT4
\ No newline at end of file |