mirror of
https://github.com/purplecabbage/phonegap-plugins.git
synced 2026-01-13 08:28:02 -05:00
27 lines
584 B
Objective-C
27 lines
584 B
Objective-C
//
|
|
// PhoneGap ! ChildBrowserCommand
|
|
//
|
|
//
|
|
// Created by Jesse MacFadyen on 10-05-29.
|
|
// Copyright 2010 Nitobi. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "PhoneGapCommand.h"
|
|
#import "ChildBrowserViewController.h"
|
|
|
|
|
|
|
|
@interface ChildBrowserCommand : PhoneGapCommand<ChildBrowserDelegate> {
|
|
|
|
ChildBrowserViewController* childBrowser;
|
|
}
|
|
|
|
@property (nonatomic, retain) ChildBrowserViewController *childBrowser;
|
|
|
|
|
|
- (void) showWebPage:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
|
|
-(void) onChildLocationChange:(NSString*)newLoc;
|
|
|
|
@end
|