NetNewsWire/Evergreen/Inspector/BuiltinSmartFeedInspectorVi...

25 lines
481 B
Swift
Raw Normal View History

2018-01-21 06:48:27 +01:00
//
// BuiltinSmartFeedInspectorViewController.swift
// Evergreen
//
// Created by Brent Simmons on 1/20/18.
// Copyright © 2018 Ranchero Software. All rights reserved.
//
import AppKit
2018-01-21 07:36:17 +01:00
final class BuiltinSmartFeedInspectorViewController: NSViewController, Inspector {
2018-01-21 06:48:27 +01:00
2018-01-21 07:36:17 +01:00
let isFallbackInspector = false
var objects: [Any]?
func canInspect(_ objects: [Any]) -> Bool {
return objects.count == 1 && objects.first is PseudoFeed
}
func willEndInspectingObjects() {
}
2018-01-21 06:48:27 +01:00
}