mirror of
https://github.com/textmate/textmate.git
synced 2026-02-15 00:45:02 -05:00
14 lines
301 B
Objective-C
14 lines
301 B
Objective-C
@protocol HOWebViewDelegateHelperProtocol
|
|
- (NSString*)statusText;
|
|
- (void)setStatusText:(NSString*)text;
|
|
@end
|
|
|
|
@interface HOWebViewDelegateHelper : NSObject
|
|
{
|
|
id delegate;
|
|
NSString* projectUUID;
|
|
}
|
|
@property (nonatomic, assign) id delegate;
|
|
@property (nonatomic, retain) NSString* projectUUID;
|
|
@end
|