diff --git a/contourd/location/network-engines/connman/ConnmanNetworkNotifier.h b/contourd/location/network-engines/connman/ConnmanNetworkNotifier.h index d7dc6e2c..09f2c114 100644 --- a/contourd/location/network-engines/connman/ConnmanNetworkNotifier.h +++ b/contourd/location/network-engines/connman/ConnmanNetworkNotifier.h @@ -1,52 +1,54 @@ /* * Copyright (C) 2011 Ivan Cukic * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2, * or (at your option) any later version, as published by the Free * Software Foundation * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details * * You should have received a copy of the GNU General Public * License along with this program; if not, write to the * Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef CONNMAN_NETWORK_NOTIFIER_H #define CONNMAN_NETWORK_NOTIFIER_H #include "../NetworkNotifier.h" +class QDBusVariant; + /** * ConnmanNetworkNotifier */ class ConnmanNetworkNotifier: public NetworkNotifier { Q_OBJECT Q_CLASSINFO("D-Bus Interface", "org.kde.LocationManager.ConnmanNetworkNotifier") public: ConnmanNetworkNotifier(QObject * parent = NULL); virtual ~ConnmanNetworkNotifier(); public Q_SLOTS: void setWifiName(const QString & accessPoint); protected Q_SLOTS: void enable(); void propertyChanged(const QString &name, const QDBusVariant &value); protected: void init(); private: class Private; Private * const d; }; #endif // CONNMAN_NETWORK_NOTIFIER_H