mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-12 02:05:54 +00:00
24 lines
415 B
C++
24 lines
415 B
C++
/*
|
|
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;
|
|
};
|