mirror of
https://github.com/ZeroTier/ZeroTierOne
synced 2025-07-11 15:46:35 -07:00
10 lines
136 B
Objective-C
10 lines
136 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
@interface Clipboard : NSObject {
|
|
|
|
}
|
|
|
|
- (void) copy:(NSString*)text;
|
|
- (NSString *) paste;
|
|
|
|
@end
|