diff options
-rw-r--r-- | kopete/protocols/sms/services/kopete_unix_serial.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/kopete/protocols/sms/services/kopete_unix_serial.h b/kopete/protocols/sms/services/kopete_unix_serial.h index 048e8ce8..a85fa94b 100644 --- a/kopete/protocols/sms/services/kopete_unix_serial.h +++ b/kopete/protocols/sms/services/kopete_unix_serial.h @@ -29,18 +29,19 @@ class TQSocketNotifier; namespace gsmlib { - + class KopeteUnixSerialPort : public TQObject, public Port { - TQ_OBJECT; - + Q_OBJECT + TQ_OBJECT + protected: int _fd; // file descriptor for device int _oldChar; // character set by putBack() (-1 == none) long int _timeoutVal; // timeout for getLine/readByte TQSocketNotifier* _readNotifier; - + // throw GsmException include UNIX errno void throwModemException(std::string message) throw(GsmException); |