Make further progress on sending to MarsEdit and Micro.blog.

This commit is contained in:
Brent Simmons
2018-01-09 22:04:45 -08:00
parent ccc699741d
commit f324e65f16
3 changed files with 48 additions and 8 deletions

View File

@@ -8,10 +8,12 @@
import Cocoa
// Unlike UndoableCommand commands, you instantiate one of each of these and reuse them.
protocol SendToCommand {
func canSendObject(_ object: Any?) -> Bool
func sendObject(_ object: Any?)
func canSendObject(_ object: Any?, selectedText: String?) -> Bool
func sendObject(_ object: Any?, selectedText: String?)
}
extension SendToCommand {