Files
phonegap-plugins/iOS/Screenshot/Screenshot.h
2012-06-05 16:33:05 -03:00

24 lines
481 B
Objective-C

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