QGIS API Documentation 3.39.0-Master (3aed037ce22)
Loading...
Searching...
No Matches
qgsgpsconnectionregistry.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsgpsconnectionregistry.h - 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#ifndef QGSGPSCONNECTIONREGISTRY_H
19#define QGSGPSCONNECTIONREGISTRY_H
20
21#include <QList>
22#include <QSet>
23
24#include "qgis_core.h"
25
27
36class CORE_EXPORT QgsGpsConnectionRegistry
37{
38 public:
39
42
45
47 void registerConnection( QgsGpsConnection *c );
49 void unregisterConnection( QgsGpsConnection *c );
50
51 QList< QgsGpsConnection *> connectionList() const;
52
53 private:
54#ifdef SIP_RUN
56#endif
57
58 QSet<QgsGpsConnection *> mConnections;
59};
60
61#endif // QGSGPSCONNECTIONREGISTRY_H
A class to register / unregister existing GPS connections such that the information is available to a...
QgsGpsConnectionRegistry()=default
QgsGpsConnectionRegistry & operator=(const QgsGpsConnectionRegistry &rh)=delete
QgsGpsConnectionRegistry(const QgsGpsConnectionRegistry &rh)=delete
Abstract base class for connection to a GPS device.
As part of the API refactoring and improvements which landed in the Processing API was substantially reworked from the x version This was done in order to allow much of the underlying Processing framework to be ported into c