summaryrefslogtreecommitdiff
path: root/src/location/qlocation.h
blob: 687ed409c247dd9fc017c71622d4f84aa35a3fb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Copyright (C) 2015 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only

#ifndef QLOCATION_H
#define QLOCATION_H

#if 0
#pragma qt_class(QLocation)
#endif

#include <QtLocation/qlocationglobal.h>

QT_BEGIN_NAMESPACE

namespace QLocation {

enum Visibility {
    UnspecifiedVisibility = 0x00,
    DeviceVisibility = 0x01,
    PrivateVisibility = 0x02,
    PublicVisibility = 0x04
};

Q_DECLARE_FLAGS(VisibilityScope, Visibility)

}

Q_DECLARE_OPERATORS_FOR_FLAGS(QLocation::VisibilityScope)

QT_END_NAMESPACE

#endif // QLOCATION_H