Plasma5Support

location_ip.h
1/*
2 SPDX-FileCopyrightText: 2009 Petri Damstén <damu@iki.fi>
3
4 SPDX-License-Identifier: GPL-2.0-or-later
5*/
6
7#pragma once
8
9#include "geolocationprovider.h"
10
11class Ip : public GeolocationProvider
12{
14public:
15 explicit Ip(QObject *parent);
16 ~Ip() override;
17
18 void update() override;
19
20private:
21 class Private;
22 Private *const d;
23};
Q_OBJECTQ_OBJECT
QObject * parent() const const
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Mon Nov 18 2024 12:08:57 by doxygen 1.12.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.