QGIS/python/core/gps/qgsgpsconnectionregistry.sip

23 lines
764 B
Plaintext
Raw Normal View History

2015-07-29 11:52:14 +02:00
/** A singleton class to register / unregister existing GPS connections such that the information
2016-02-14 03:50:23 +01:00
is available to all classes and plugins*/
class QgsGPSConnectionRegistry
{
%TypeHeaderCode
#include <qgsgpsconnectionregistry.h>
%End
public:
QgsGPSConnectionRegistry();
~QgsGPSConnectionRegistry();
2015-07-29 11:52:14 +02:00
/** Inserts a connection into the registry. The connection is owned by the registry class until it is unregistered again*/
void registerConnection( QgsGPSConnection *c );
2015-07-29 11:52:14 +02:00
/** Unregisters connection. The registry does no longer own the connection*/
void unregisterConnection( QgsGPSConnection *c );
QList< QgsGPSConnection *> connectionList() const;
private:
QgsGPSConnectionRegistry( const QgsGPSConnectionRegistry &rh );
};