Remove SendToCommand, now in RSCore.

This commit is contained in:
Brent Simmons 2019-04-13 13:10:32 -07:00
parent 1cca533491
commit 134ba236b7
1 changed files with 0 additions and 21 deletions

View File

@ -1,21 +0,0 @@
//
// SendToCommand.swift
// NetNewsWire
//
// Created by Brent Simmons on 1/8/18.
// Copyright © 2018 Ranchero Software. All rights reserved.
//
import AppKit
// Unlike UndoableCommand commands, you instantiate one of each of these and reuse them.
protocol SendToCommand {
var title: String { get }
var image: NSImage? { get }
func canSendObject(_ object: Any?, selectedText: String?) -> Bool
func sendObject(_ object: Any?, selectedText: String?)
}