X-Git-Url: https://git.yukkurigames.com/?p=enjoyable.git;a=blobdiff_plain;f=Sparkle.framework%2FVersions%2FA%2FHeaders%2FSUVersionDisplayProtocol.h;fp=Sparkle.framework%2FVersions%2FA%2FHeaders%2FSUVersionDisplayProtocol.h;h=368b9c9f4c0095c28e4e612c285e5d56edb9eaa1;hp=0000000000000000000000000000000000000000;hb=63a4e78b77b29d91a0f3cb592b07bd65a70b82b8;hpb=a506d9971da5088cfb62daf02a1858e503619ea1 diff --git a/Sparkle.framework/Versions/A/Headers/SUVersionDisplayProtocol.h b/Sparkle.framework/Versions/A/Headers/SUVersionDisplayProtocol.h new file mode 100644 index 0000000..368b9c9 --- /dev/null +++ b/Sparkle.framework/Versions/A/Headers/SUVersionDisplayProtocol.h @@ -0,0 +1,27 @@ +// +// SUVersionDisplayProtocol.h +// EyeTV +// +// Created by Uli Kusterer on 08.12.09. +// Copyright 2009 Elgato Systems GmbH. All rights reserved. +// + +#import + + +/*! + @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