Общая библиотека для работы с торговым оборудованием.  1.0.0
qextserialport.h
1 #ifndef _QEXTSERIALPORT_H_
2 #define _QEXTSERIALPORT_H_
3 
4 #include "teglobal.h"
5 
6 /*POSIX CODE*/
7 #ifdef _TTY_POSIX_
8 #include "posix_qextserialport.h"
9 #define QextBaseType Posix_QextSerialPort
10 
11 /*MS WINDOWS CODE*/
12 #else
13 #include "win_qextserialport.h"
14 #define QextBaseType Win_QextSerialPort
15 #endif
16 
17 class LIB_EXPORT QextSerialPort: public QextBaseType {
18 public:
20  QextSerialPort(const char* name);
21  QextSerialPort(PortSettings const& s);
22  QextSerialPort(const char*name, PortSettings const& s);
24  QextSerialPort& operator=(const QextSerialPort&);
25  virtual ~QextSerialPort();
26 };
27 
28 #endif
Definition: qextserialbase.h:158
QT system independed serial port class.
Definition: qextserialport.h:17