File indexing completed on 2024-05-12 05:22:24

0001 /*
0002     SPDX-FileCopyrightText: 2014 Daniel Vrátil <dvratil@redhat.com>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0005 */
0006 
0007 #pragma once
0008 
0009 #include <QObject>
0010 
0011 #include "kgapilatitude_export.h"
0012 
0013 namespace KGAPI2
0014 {
0015 
0016 /**
0017  * @brief A Helper QObject
0018  */
0019 class KGAPILATITUDE_DEPRECATED_EXPORT Latitude : public QObject
0020 {
0021     Q_OBJECT
0022 
0023 public:
0024     enum Granularity { City, Best };
0025     Q_ENUM(Granularity)
0026 };
0027 
0028 } // namespace KGAPI2