summaryrefslogtreecommitdiffstats
path: root/OSX/Sparkle.framework/Versions/A/Headers/SUVersionDisplayProtocol.h
blob: 368b9c9f4c0095c28e4e612c285e5d56edb9eaa1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
//  SUVersionDisplayProtocol.h
//  EyeTV
//
//  Created by Uli Kusterer on 08.12.09.
//  Copyright 2009 Elgato Systems GmbH. All rights reserved.
//

#import <Cocoa/Cocoa.h>


/*!
    @protocol
    @abstract	Implement this protocol to apply special formatting to the two
				version numbers.
*/
@protocol SUVersionDisplay

/*!
    @method     
    @abstract   An abstract method to format two version strings.
    @discussion You get both so you can display important distinguishing
				information, but leave out unnecessary/confusing parts.
*/
-(void)	formatVersion: (NSString**)inOutVersionA andVersion: (NSString**)inOutVersionB; 

@end