public
Description: An OS X application to build a standalone web site as an export from my photo album.
Homepage: http://bleu.west.spy.net/~dustin/projects/photosync/
Clone URL: git://github.com/dustin/photosync.git
Search Repo:
photosync / SyncTask.h
100644 27 lines (21 sloc) 0.456 kb
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
//
// SyncTask.h
// PhotoSync
//
// Created by Dustin Sallings on 2005/2/3.
// Copyright 2005 Dustin Sallings. All rights reserved.
//
 
#import <AppKit/AppKit.h>
#import "Location.h"
#import "PhotoClient.h"
 
@interface SyncTask : NSObject {
  PhotoClient *photoClient;
  Location *location;
  id delegate;
 
  NSMutableArray *subTasks;
}
 
-initWithLocation:(Location *)loc delegate:(id)del;
 
-(void)run;
-(void)cancel;
-(void)stopSubTasks:(id)sender;
 
@end