summaryrefslogtreecommitdiffstats
path: root/tools/demoLauncher/widget.h
blob: 4d322128c98378a90b6a53d841a4b4a595c96c60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#ifndef WIDGET_H
#define WIDGET_H

#include <QtWidgets/QWidget>
#include <QDir>

class Widget : public QWidget
{
    Q_OBJECT

public:
    Widget(QWidget *parent = 0);
    ~Widget();

private:
    QDir m_appFolder;
};

#endif // WIDGET_H