When I try to use qextserialport on my xcode project by
Qt Code:
  1. port = new QextSerialPort(sPortText);
To copy to clipboard, switch view to plain text mode 
I get this:

Qt Code:
  1. /Users/bnilsson/Documents/Programming/Active/Qt/PAMS/PAMS3017b1/src/qextserialbase.h:225: note: virtual qint64 QextSerialBase::bytesAvailable() const
  2. /Users/bnilsson/Documents/Programming/Active/Qt/PAMS/PAMS3017b1/src/serialport.cpp:47: error: cannot allocate an object of abstract type 'QextSerialPort'
  3. /Users/bnilsson/Documents/Programming/Active/Qt/PAMS/PAMS3017b1/src/qextserialport.h:17: note: because the following virtual functions are pure within 'QextSerialPort':
  4. /Users/bnilsson/Documents/Programming/Active/Qt/PAMS/PAMS3017b1/src/qextserialbase.h:225: note: virtual qint64 QextSerialBase::bytesAvailable() const
  5. Build failed (1 error)
To copy to clipboard, switch view to plain text mode 

It works fine on Win32.
When I look thru the source code, I cannot see any significant difference in the way it is implemented that would be causing this.
Suggestions, anyone?
If more info is required, I will be glad to post it.

BN