зеркало из https://github.com/nextcloud/talk-ios.git
23 строки
505 B
Objective-C
23 строки
505 B
Objective-C
//
|
|
// AppDelegate.h
|
|
// VideoCalls
|
|
//
|
|
// Created by Ivan Sein on 30.05.17.
|
|
// Copyright © 2017 struktur AG. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import <PushKit/PushKit.h>
|
|
#import "BKPasscodeLockScreenManager.h"
|
|
#import "CCBKPasscode.h"
|
|
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate, PKPushRegistryDelegate, BKPasscodeLockScreenManagerDelegate, BKPasscodeViewControllerDelegate>
|
|
{
|
|
PKPushRegistry *pushRegistry;
|
|
}
|
|
@property (strong, nonatomic) UIWindow *window;
|
|
|
|
|
|
@end
|
|
|