mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 21:17:03 +00:00
20 lines
295 B
Objective-C
20 lines
295 B
Objective-C
//
|
|
// WebPasteboardProxy.h
|
|
// NativeHost
|
|
//
|
|
// Created by Ross Boucher on 12/12/09.
|
|
// Copyright 2009 280 North. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
@interface WebPasteboardProxy : NSObject
|
|
{
|
|
NSPasteboard *pasteboard;
|
|
}
|
|
|
|
+ (id)pasteboardWithName:(NSString *)aName;
|
|
|
|
@end
|