Update project for OS X 10.10.
[enjoyable.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 #import <Cocoa/Cocoa.h>
10
11
12 /*!
13 @protocol
14 @abstract Implement this protocol to apply special formatting to the two
15 version numbers.
16 */
17 @protocol SUVersionDisplay
18
19 /*!
20 @method
21 @abstract An abstract method to format two version strings.
22 @discussion You get both so you can display important distinguishing
23 information, but leave out unnecessary/confusing parts.
24 */
25 -(void) formatVersion: (NSString**)inOutVersionA andVersion: (NSString**)inOutVersionB;
26
27 @end