Files
NetNewsWire/Frameworks/RSTextDrawing/RSTextDrawing/RSTextRendererProtocol.h
2017-05-29 13:17:58 -07:00

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