Branch data Line data Source code
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 : : 18 : : #include "qgsgpsconnectionregistry.h" 19 : : #include "qgsgpsconnection.h" 20 : : 21 : 5 : QgsGpsConnectionRegistry::~QgsGpsConnectionRegistry() 22 : : { 23 : 5 : qDeleteAll( mConnections ); 24 : 5 : } 25 : : 26 : 0 : void QgsGpsConnectionRegistry::registerConnection( QgsGpsConnection *c ) 27 : : { 28 : 0 : mConnections.insert( c ); 29 : 0 : } 30 : : 31 : 0 : void QgsGpsConnectionRegistry::unregisterConnection( QgsGpsConnection *c ) 32 : : { 33 : 0 : mConnections.remove( c ); 34 : 0 : } 35 : : 36 : 0 : QList< QgsGpsConnection * > QgsGpsConnectionRegistry::connectionList() const 37 : : { 38 : 0 : return qgis::setToList( mConnections ); 39 : : }