QGIS/python/core/gps/qgsgpsdetector.sip

23 lines
455 B
Plaintext
Raw Normal View History

// Class to detect the GPS port
class QgsGPSDetector: QObject
{
%TypeHeaderCode
#include "qgsgpsdetector.h"
%End
public:
QgsGPSDetector( QString portName );
~QgsGPSDetector();
static QList< QPair<QString, QString> > availablePorts();
public slots:
void advance();
void detected( const QgsGPSInformation& );
void connDestroyed( QObject * );
signals:
void detected( QgsGPSConnection * );
void detectionFailed();
};