mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
18 lines
280 B
Objective-C
18 lines
280 B
Objective-C
//
|
|
// RSTextRendererProtocol.h
|
|
// RSTextDrawing
|
|
//
|
|
// Created by Brent Simmons on 3/6/16.
|
|
// Copyright © 2016 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
@import Cocoa;
|
|
|
|
@protocol RSTextRenderer <NSObject>
|
|
|
|
- (void)renderTextInRect:(NSRect)r;
|
|
|
|
+ (void)emptyCache;
|
|
|
|
@end
|