File: clientapplication.h

package info (click to toggle)
qt6-positioning 6.9.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,068 kB
  • sloc: cpp: 35,693; java: 514; xml: 58; python: 35; makefile: 23
file content (27 lines) | stat: -rw-r--r-- 513 bytes parent folder | download | duplicates (2)
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
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
#ifndef CLIENTAPPLICATION_H
#define CLIENTAPPLICATION_H

#include <QtWidgets/qmainwindow.h>

QT_BEGIN_NAMESPACE
class QGeoPositionInfo;
class QTextEdit;
QT_END_NAMESPACE

class ClientApplication : public QMainWindow
{
    Q_OBJECT
public:
    ClientApplication(QWidget *parent = 0);

private slots:
    void positionUpdated(const QGeoPositionInfo &info);

private:
    QTextEdit *textEdit;
};


#endif