X-Git-Url: https://git.mdrn.pl/wl-mobile.git/blobdiff_plain/bff5852b5ee1320a6eaf4256570784bbc024496f..b9acd6c8b2300a76624900cd19f9e40e59ff3f7b:/Classes/AppDelegate.h diff --git a/Classes/AppDelegate.h b/Classes/AppDelegate.h new file mode 100644 index 0000000..369da83 --- /dev/null +++ b/Classes/AppDelegate.h @@ -0,0 +1,29 @@ +// +// AppDelegate.h +// wl-mobi +// +// Created by FNP on 10/19/11. +// Copyright __MyCompanyName__ 2011. All rights reserved. +// + +#import +#ifdef PHONEGAP_FRAMEWORK + #import +#else + #import "PhoneGapDelegate.h" +#endif + +@interface AppDelegate : PhoneGapDelegate { + + NSString* invokeString; +} + +// invoke string is passed to your app on launch, this is only valid if you +// edit wl-mobi.plist to add a protocol +// a simple tutorial can be found here : +// http://iphonedevelopertips.com/cocoa/launching-your-own-application-via-a-custom-url-scheme.html + +@property (copy) NSString* invokeString; + +@end +