Clipboard.h 263 B

1234567891011121314151617
  1. //
  2. // Clipboard.h
  3. // MG
  4. //
  5. // Created by Tim Debo on 5/28/14.
  6. //
  7. //
  8. #import "Command.h"
  9. @protocol ClipboardExports <JSExport>
  10. JSExportAs(copy, - (void) copy:(NSString*)text);
  11. - (NSString *) paste;
  12. @end
  13. @interface Clipboard : Command <ClipboardExports>
  14. @end