mirror of
https://github.com/purplecabbage/phonegap-plugins.git
synced 2026-01-14 16:58:03 -05:00
21 lines
415 B
Objective-C
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
|