2017-11-19 22:57:42 +01:00
|
|
|
//
|
|
|
|
// PseudoFeed.swift
|
2018-08-29 07:18:24 +02:00
|
|
|
// NetNewsWire
|
2017-11-19 22:57:42 +01:00
|
|
|
//
|
|
|
|
// Created by Brent Simmons on 11/19/17.
|
|
|
|
// Copyright © 2017 Ranchero Software. All rights reserved.
|
|
|
|
//
|
|
|
|
|
2019-04-15 22:03:05 +02:00
|
|
|
#if os(macOS)
|
|
|
|
|
|
|
|
import AppKit
|
2018-07-24 03:29:08 +02:00
|
|
|
import Articles
|
2018-07-28 21:16:14 +02:00
|
|
|
import Account
|
2017-11-19 22:57:42 +01:00
|
|
|
import RSCore
|
|
|
|
|
2021-02-06 00:06:45 +01:00
|
|
|
protocol PseudoFeed: AnyObject, Feed, SmallIconProvider, PasteboardWriterOwner {
|
2017-11-19 22:57:42 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-04-15 22:03:05 +02:00
|
|
|
#else
|
|
|
|
|
2020-01-13 01:38:04 +01:00
|
|
|
import UIKit
|
2019-04-15 22:03:05 +02:00
|
|
|
import Articles
|
|
|
|
import Account
|
|
|
|
import RSCore
|
|
|
|
|
2021-02-06 00:06:45 +01:00
|
|
|
protocol PseudoFeed: AnyObject, Feed, SmallIconProvider {
|
2019-04-15 22:03:05 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-06-28 10:05:01 +02:00
|
|
|
#endif
|