Files
vienna-rss/Vienna/Sources/Models/FolderImageCache.h
T
Eitot d4f3d2a977 Move instance variable declarations from interface to implementation
Clang allows instance variable declaration in the class implementation. Apple has recommended this since at least 2013: https://developer.apple.com/library/archive/documentation/Cocoa/Conceptual/ObjectiveC/Chapters/ocDefiningClasses.html.
2023-05-29 07:21:55 +02:00

19 lines
391 B
Objective-C

//
// FolderImageCache.h
// Vienna
//
// Created by Joshua Pore on 8/03/2015.
// Copyright (c) 2015 The Vienna Project. All rights reserved.
//
@import Cocoa;
@interface FolderImageCache : NSObject
@property (class, readonly, nonatomic) FolderImageCache *defaultCache;
-(void)addImage:(NSImage *)image forURL:(NSString *)baseURL;
-(NSImage *)retrieveImage:(NSString *)baseURL;
@end