ios version
[wl-mobile.git] / Classes / AppDelegate.h
diff --git a/Classes/AppDelegate.h b/Classes/AppDelegate.h
new file mode 100644 (file)
index 0000000..369da83
--- /dev/null
@@ -0,0 +1,29 @@
+//
+//  AppDelegate.h
+//  wl-mobi
+//
+//  Created by FNP on 10/19/11.
+//  Copyright __MyCompanyName__ 2011. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+#ifdef PHONEGAP_FRAMEWORK
+       #import <PhoneGap/PhoneGapDelegate.h>
+#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
+