QGIS API Documentation
2.0.1-Dufour
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
src
core
gps
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
18
#include "
qgsgpsconnectionregistry.h
"
19
#include "
qgsgpsconnection.h
"
20
21
QgsGPSConnectionRegistry
*
QgsGPSConnectionRegistry::mInstance
= 0;
22
23
QgsGPSConnectionRegistry::QgsGPSConnectionRegistry
()
24
{
25
26
}
27
28
QgsGPSConnectionRegistry::~QgsGPSConnectionRegistry
()
29
{
30
QSet<QgsGPSConnection*>::iterator it =
mConnections
.begin();
31
for
( ; it !=
mConnections
.end(); ++it )
32
{
33
delete
*it;
34
}
35
}
36
37
QgsGPSConnectionRegistry
*
QgsGPSConnectionRegistry::instance
()
38
{
39
if
( !
mInstance
)
40
{
41
mInstance
=
new
QgsGPSConnectionRegistry
();
42
}
43
return
mInstance
;
44
}
45
46
void
QgsGPSConnectionRegistry::registerConnection
(
QgsGPSConnection
* c )
47
{
48
mConnections
.insert( c );
49
}
50
51
void
QgsGPSConnectionRegistry::unregisterConnection
(
QgsGPSConnection
* c )
52
{
53
mConnections
.remove( c );
54
}
55
56
QList< QgsGPSConnection* >
QgsGPSConnectionRegistry::connectionList
()
const
57
{
58
return
mConnections
.toList();
59
}
Generated on Tue Sep 24 2013 14:41:46 for QGIS API Documentation by
1.8.1.2