Files
phonegap-plugins/iPhone/ScreenShot/ScreenShot.h

21 lines
415 B
Objective-C

//
// Screenshot.h
//
// Created by Simon Madine on 29/04/2010.
// Copyright 2010 The Angry Robot Zombie Factory.
// MIT licensed
//
#import <Foundation/Foundation.h>
#import <QuartzCore/QuartzCore.h>
#ifdef PHONEGAP_FRAMEWORK
#import <PhoneGap/PGPlugin.h>
#else
#import "PGPlugin.h"
#endif
@interface Screenshot : PGPlugin {
}
- (void)saveScreenshot:(NSArray*)arguments withDict:(NSDictionary*)options;
@end