linphone-iphone/Classes/ConsoleViewController.h
Jehan Monnier ff2f40c002 fix for:
-tunnel button disable when phone number is empty
	-axtel button status not acurate
	-console windows cannot be cleared
2010-01-29 11:17:57 +01:00

32 lines
502 B
Objective-C

/*
* ConsoleViewController.h
*
* Description:
*
*
* Belledonne Communications (C) 2010
*
* Copyright: See COPYING file that comes with this distribution
*
*/
#import <UIKit/UIKit.h>
@protocol LogView
+(void) addLog:(NSString*) log;
@end
@interface ConsoleViewController : UIViewController <LogView> {
UITextView* logs;
UIView* logsView;
}
-(void) doAction;
@property (nonatomic, retain) IBOutlet UITextView* logs;
@property (nonatomic, retain) IBOutlet UIView* logsView;
@end