mirror of
https://github.com/purplecabbage/phonegap-plugins.git
synced 2026-04-24 03:00:11 -04:00
24 lines
481 B
Objective-C
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 |