mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-07-27 05:30:50 +00:00
- First implementation on feedback, not finished yet! - Move all components into their own subdirectory - Restructure common delegates into BITHockeyManagerDelegate - Restructure common component methods into new superclass (not finished yet)
30 lines
766 B
Objective-C
30 lines
766 B
Objective-C
//
|
|
// CNSHockeyBaseManager.h
|
|
// HockeySDK
|
|
//
|
|
// Created by Andreas Linde on 04.06.12.
|
|
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
|
|
@interface BITHockeyBaseManager : NSObject
|
|
|
|
///-----------------------------------------------------------------------------
|
|
/// @name Delegate
|
|
///-----------------------------------------------------------------------------
|
|
|
|
/**
|
|
Sets the `BITUpdateManagerDelegate` delegate.
|
|
|
|
When using `BITUpdateManager` to distribute updates of your beta or enterprise
|
|
application, it is _REQUIRED_ to set this delegate and implement
|
|
`[BITUpdateManagerDelegate customDeviceIdentifierForUpdateManager:]`!
|
|
*/
|
|
@property (nonatomic, assign) id delegate;
|
|
|
|
@end
|