mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
27 lines
395 B
Swift
27 lines
395 B
Swift
//
|
|
// Article+Database.swift
|
|
// Database
|
|
//
|
|
// Created by Brent Simmons on 7/3/17.
|
|
// Copyright © 2017 Ranchero Software. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import RSDatabase
|
|
import Data
|
|
|
|
extension Article {
|
|
|
|
convenience init?(row: FMResultSet) {
|
|
|
|
}
|
|
|
|
func databaseDictionary() -> NSDictionary {
|
|
|
|
var d = NSMutableDictionary()
|
|
|
|
|
|
return d.copy() as! NSDictionary
|
|
}
|
|
}
|