linphone-ios/Classes/BuschJaegerWelcomeView.h
Yann Diorcet 863617da14 Fix history reload on fail (ipad)
Fix download concurrency
2012-12-13 17:01:25 +01:00

38 lines
1.5 KiB
Objective-C

/* BuschJaegerWelcomeView.h
*
* Copyright (C) 2011 Belledonne Comunications, Grenoble, France
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#import <UIKit/UIKit.h>
#import "BuschJaegerStationTableViewController.h"
#import "BuschJaegerHistoryTableViewController.h"
@interface BuschJaegerWelcomeView : UIViewController<BuschJaegerConfigurationDelegate> {
}
@property (nonatomic, retain) IBOutlet UIButton* settingsButton;
@property (nonatomic, retain) IBOutlet UIButton* historyButton;
@property (nonatomic, retain) IBOutlet BuschJaegerStationTableViewController *stationTableController;
@property (nonatomic, retain) IBOutlet UIView *waitView;
@property (nonatomic, retain) IBOutlet BuschJaegerHistoryTableViewController *historyTableController;
- (IBAction)settingsClick:(id)sender;
- (IBAction)historyClick:(id)sender;
- (void)reloadHistory;
@end