This repository has been archived on 2025-08-18. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
JPImagePickerController/JPImagePickerDemo/Classes/JPImagePickerDemoAppDelegate.h
Jeena Paradies 40897a865f init
2009-11-11 14:12:38 +01:00

22 lines
533 B
Objective-C

//
// JPImagePickerDemoAppDelegate.h
// JPImagePickerDemo
//
// Created by Jeena on 11.11.09.
// Copyright __MyCompanyName__ 2009. All rights reserved.
//
#import <UIKit/UIKit.h>
@class JPImagePickerDemoViewController;
@interface JPImagePickerDemoAppDelegate : NSObject <UIApplicationDelegate> {
UIWindow *window;
JPImagePickerDemoViewController *viewController;
}
@property (nonatomic, retain) IBOutlet UIWindow *window;
@property (nonatomic, retain) IBOutlet JPImagePickerDemoViewController *viewController;
@end