Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 278 → Rev 279

/QMK-Groundstation/tags/V0.7.3/SerialPort/qextserialport.h
0,0 → 1,27
 
#ifndef _QEXTSERIALPORT_H_
#define _QEXTSERIALPORT_H_
 
/*POSIX CODE*/
#ifdef _TTY_POSIX_
#include "posix_qextserialport.h"
#define QextBaseType Posix_QextSerialPort
 
/*MS WINDOWS CODE*/
#else
#include "win_qextserialport.h"
#define QextBaseType Win_QextSerialPort
#endif
 
class QextSerialPort: public QextBaseType {
public:
QextSerialPort();
QextSerialPort(const QString & name);
QextSerialPort(PortSettings const& s);
QextSerialPort(const QString & name, PortSettings const& s);
QextSerialPort(const QextSerialPort& s);
QextSerialPort& operator=(const QextSerialPort&);
virtual ~QextSerialPort();
};
 
#endif