Upgrade to Sparkle 1.21.3.
[macgdbp.git] / Sparkle.framework / Versions / A / Headers / SUVersionDisplayProtocol.h
1 //
2 // SUVersionDisplayProtocol.h
3 // EyeTV
4 //
5 // Created by Uli Kusterer on 08.12.09.
6 // Copyright 2009 Elgato Systems GmbH. All rights reserved.
7 //
8
9 #if __has_feature(modules)
10 @import Foundation;
11 #else
12 #import <Foundation/Foundation.h>
13 #endif
14 #import "SUExport.h"
15
16 /*!
17 Applies special display formatting to version numbers.
18 */
19 @protocol SUVersionDisplay
20
21 /*!
22 Formats two version strings.
23
24 Both versions are provided so that important distinguishing information
25 can be displayed while also leaving out unnecessary/confusing parts.
26 */
27 - (void)formatVersion:(NSString *_Nonnull*_Nonnull)inOutVersionA andVersion:(NSString *_Nonnull*_Nonnull)inOutVersionB;
28
29 @end