Implement initial branch label handling.
[sparkle2.git] / Stub / SURegistrar.h
blob8b53ccb729574da99ad5a51f6672528766e84e1f
1 //
2 // SURegistrar.h
3 // Sparkle
4 //
5 // Created by Andy Matuschak on 9/10/07.
6 // Copyright 2007 __MyCompanyName__. All rights reserved.
7 //
9 #import <Cocoa/Cocoa.h>
11 @class SUProduct;
12 @interface SURegistrar : NSObject {
13 id delegate;
16 + (SURegistrar *)sharedRegistrar;
17 - (void)attemptRegistration;
18 - (void)setDelegate:(id)delegate;
19 @end
21 @interface NSObject (SUBootstrapperDelegateProtocol)
22 - (SUProduct *)productForRegistrar:(SURegistrar *)registrar;
23 - (NSString *)productIdentifierForRegistrar:(SURegistrar *)registrar;
24 @end