Files
phonegap-plugins/iPhone/ChildBrowser/ChildBrowserCommand.h
RandyMcMillan 36275233f7 reverted iPhone/ChildBrowser for PhoneGap 1.4.1 per Issue #643
reverted iPhone/ChildBrowser for PhoneGap 1.4.1 per Issue #643

I will tag relavent commits so PG/CDV version support can easily be
found
2012-10-31 17:31:19 -04:00

31 lines
640 B
Objective-C
Executable File

//
// PhoneGap ! ChildBrowserCommand
//
//
// Created by Jesse MacFadyen on 10-05-29.
// Copyright 2010 Nitobi. All rights reserved.
//
#import <Foundation/Foundation.h>
#ifdef PHONEGAP_FRAMEWORK
#import <PhoneGap/PGPlugin.h>
#else
#import "PGPlugin.h"
#endif
#import "ChildBrowserViewController.h"
@interface ChildBrowserCommand : PGPlugin <ChildBrowserDelegate> {
ChildBrowserViewController* childBrowser;
}
@property (nonatomic, retain) ChildBrowserViewController *childBrowser;
- (void) showWebPage:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
-(void) onChildLocationChange:(NSString*)newLoc;
@end