blob: 8b9b4cf241e0ee1e4f3f67e888ea477d1c77eb06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Copyright (C) 2016 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
// Qt-Security score:significant reason:default
#ifndef QIOSAPPLICATIONDELEGATE_H
#define QIOSAPPLICATIONDELEGATE_H
#import <UIKit/UIKit.h>
#import <QtGui/QtGui>
#import "qiosviewcontroller.h"
@interface QIOSApplicationDelegate : UIResponder <UIApplicationDelegate>
@end
#endif // QIOSAPPLICATIONDELEGATE_H
|