File indexing completed on 2024-05-19 05:37:50

0001 /*
0002     SPDX-FileCopyrightText: 2009 Petri Damstén <damu@iki.fi>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include "geolocationprovider.h"
0010 
0011 class Ip : public GeolocationProvider
0012 {
0013     Q_OBJECT
0014 public:
0015     explicit Ip(QObject *parent);
0016     ~Ip() override;
0017 
0018     void update() override;
0019 
0020 private:
0021     class Private;
0022     Private *const d;
0023 };