You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
415 B
23 lines
415 B
/* |
|
SPDX-FileCopyrightText: 2009 Petri Damstén <damu@iki.fi> |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
|
|
#pragma once |
|
|
|
#include "geolocationprovider.h" |
|
|
|
class Ip : public GeolocationProvider |
|
{ |
|
Q_OBJECT |
|
public: |
|
explicit Ip(QObject *parent = nullptr, const QVariantList &args = QVariantList()); |
|
~Ip() override; |
|
|
|
void update() override; |
|
|
|
private: |
|
class Private; |
|
Private *const d; |
|
};
|
|
|