jessegrosjean / bdocuments

This URL has Read+Write access

bdocuments / BCloudSyncWindowController.h
100644 23 lines (15 sloc) 0.394 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
// BCloudSyncWindowController.h
// BDocuments
//
// Created by Jesse Grosjean on 2/27/09.
// Copyright 2009 Hog Bay Software. All rights reserved.
//
 
#import <Cocoa/Cocoa.h>
 
 
@interface BCloudSyncWindowController : NSWindowController {
IBOutlet NSProgressIndicator *progressIndicator;
}
 
+ (id)sharedInstance;
 
@property(assign) double progress;
 
- (IBAction)cancel:(id)sender;
 
@end