25 lines
481 B
Swift
25 lines
481 B
Swift
//
|
|
// BuiltinSmartFeedInspectorViewController.swift
|
|
// Evergreen
|
|
//
|
|
// Created by Brent Simmons on 1/20/18.
|
|
// Copyright © 2018 Ranchero Software. All rights reserved.
|
|
//
|
|
|
|
import AppKit
|
|
|
|
final class BuiltinSmartFeedInspectorViewController: NSViewController, Inspector {
|
|
|
|
let isFallbackInspector = false
|
|
var objects: [Any]?
|
|
|
|
func canInspect(_ objects: [Any]) -> Bool {
|
|
|
|
return objects.count == 1 && objects.first is PseudoFeed
|
|
}
|
|
|
|
func willEndInspectingObjects() {
|
|
|
|
}
|
|
}
|