QGIS API Documentation  2.14.0-Essen
qgsgpsconnectionregistry.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  qgsgpsconnectionregistry.cpp - description
3  ----------------------------
4  begin : December 27th, 2009
5  copyright : (C) 2009 by Marco Hugentobler
6  email : marco at hugis dot net
7  ***************************************************************************/
8 
9 /***************************************************************************
10  * *
11  * This program is free software; you can redistribute it and/or modify *
12  * it under the terms of the GNU General Public License as published by *
13  * the Free Software Foundation; either version 2 of the License, or *
14  * (at your option) any later version. *
15  * *
16  ***************************************************************************/
17 
19 #include "qgsgpsconnection.h"
20 
22 {
23 }
24 
26 {
27  qDeleteAll( mConnections );
28 }
29 
31 {
33  return &mInstance;
34 }
35 
37 {
38  mConnections.insert( c );
39 }
40 
42 {
43  mConnections.remove( c );
44 }
45 
47 {
48  return mConnections.toList();
49 }
const_iterator insert(const T &value)
static QgsGPSConnectionRegistry * instance()
void registerConnection(QgsGPSConnection *c)
Inserts a connection into the registry.
Abstract base class for connection to a GPS device.
static QgsGPSConnectionRegistry * mInstance
void unregisterConnection(QgsGPSConnection *c)
Unregisters connection.
A singleton class to register / unregister existing GPS connections such that the information is avai...
bool remove(const T &value)
QList< T > toList() const
QSet< QgsGPSConnection * > mConnections
QList< QgsGPSConnection * > connectionList() const