mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
23 lines
484 B
Objective-C
23 lines
484 B
Objective-C
//
|
|
// BWHockeySettingsViewController.h
|
|
// HockeyDemo
|
|
//
|
|
// Created by Andreas Linde on 3/8/11.
|
|
// Copyright 2011 Andreas Linde. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
@class BWHockeyManager;
|
|
|
|
|
|
@interface BWHockeySettingsViewController : UIViewController <UITableViewDelegate, UITableViewDataSource> {
|
|
BWHockeyManager *hockeyManager_;
|
|
}
|
|
|
|
@property (nonatomic, retain) BWHockeyManager *hockeyManager;
|
|
|
|
- (id)init:(BWHockeyManager *)newHockeyManager;
|
|
- (id)init;
|
|
|
|
@end
|