Delete no longer needed AddFeedWindowControllerType.

This commit is contained in:
Brent Simmons
2024-11-01 21:50:51 -07:00
parent 61235d0bcb
commit acabaf8f94
4 changed files with 8 additions and 18 deletions

View File

@@ -0,0 +1,23 @@
//
// AddFeedWindowController.swift
// NetNewsWire
//
// Created by Maurice Parker on 4/21/20.
// Copyright © 2020 Ranchero Software. All rights reserved.
//
import Foundation
import Account
protocol AddFeedWindowControllerDelegate: AnyObject {
// userEnteredURL will have already been validated and normalized.
func addFeedWindowController(_: AddFeedWindowController, userEnteredURL: URL, userEnteredTitle: String?, container: Container)
func addFeedWindowControllerUserDidCancel(_: AddFeedWindowController)
}
protocol AddFeedWindowController {
var window: NSWindow? { get }
func runSheetOnWindow(_ hostWindow: NSWindow)
}