Newer
Older
TUve-iPhone / Classes / TuveAppDelegate.h
@phausler phausler on 9 Sep 2008 565 bytes initial commit
//
//  TuveAppDelegate.h
//  Tuve
//
//  Created by Philippe Hausler on 9/8/08.
//  Copyright Philippe Hausler 2008. All rights reserved.
//

#import <UIKit/UIKit.h>

@class TuveViewController;
@class TuveConnection;
@interface TuveAppDelegate : NSObject <UIApplicationDelegate> {
	IBOutlet UIWindow *window;
	IBOutlet UINavigationController *nav;
	IBOutlet UIViewController *flipside;
	IBOutlet UITextField *chatBox;
	TuveConnection *connection;
	BOOL flipped;
}

@property (nonatomic, retain) UIWindow *window;
- (IBAction)toggleView;
- (IBAction)sendChat;
@end