mirror of
https://github.com/purplecabbage/phonegap-plugins.git
synced 2026-04-24 03:00:11 -04:00
16 lines
306 B
Objective-C
16 lines
306 B
Objective-C
//
|
|
// ClipboardPlugin.h
|
|
// Clipboard plugin for PhoneGap
|
|
//
|
|
// Copyright 2010 Michel Weimerskirch.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "PhoneGapCommand.h"
|
|
|
|
@interface ClipboardPlugin : PhoneGapCommand{ }
|
|
|
|
-(void)setText:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
|
|
|
|
@end
|