mirror of
https://github.com/purplecabbage/phonegap-plugins.git
synced 2026-01-14 16:58:03 -05:00
22 lines
322 B
Objective-C
22 lines
322 B
Objective-C
//
|
|
// exampleAppDelegate.h
|
|
// example
|
|
//
|
|
// Created by Gregamel on 4/3/11.
|
|
// Copyright Boeing 2011. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#ifdef PHONEGAP_FRAMEWORK
|
|
#import <PhoneGap/PhoneGapDelegate.h>
|
|
#else
|
|
#import "PhoneGapDelegate.h"
|
|
#endif
|
|
|
|
|
|
@interface exampleAppDelegate : PhoneGapDelegate {
|
|
}
|
|
|
|
@end
|
|
|