Files
phonegap-plugins/iOS/ChildBrowser/ChildBrowserCommand.h
RandyMcMillan 34e8e862de Comply with 2.0 CORDOVA_FRAMEWORK header
4. Change in import header use: in 2.0.0, Cordova projects use the
CordovaLib project as a subproject, it now uses the CORDOVA_FRAMEWORK
styled import like this:
#import <Cordova/CDV.h>
instead of like this:
#import "CDV.h"
So now in 2.0.0, Cordova import headers are unified.
2012-07-30 16:34:53 -04:00

23 lines
537 B
Objective-C

// Created by Jesse MacFadyen on 10-05-29.
// Copyright 2010 Nitobi. All rights reserved.
// Copyright 2012, Randy McMillan
#import <Cordova/CDVPlugin.h>
#import "ChildBrowserViewController.h"
@interface ChildBrowserCommand : CDVPlugin <ChildBrowserDelegate> {
ChildBrowserViewController* childBrowser;
}
@property (nonatomic, retain) ChildBrowserViewController *childBrowser;
- (void) showWebPage:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
-(void) onChildLocationChange:(NSString*)newLoc;
@end