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:
dustin (author)
Sat Apr 05 13:41:45 -0700 2008
commit  9f8e5028800371f034fa82b2feffe677e95a86ce
tree    554ee7c313efd6d9d03ac539d2a23292a62fd6fa
parent  2dceca4018192b712c3dcbd872354326347bca00
photosync / SyncSubTask.h
100644 32 lines (23 sloc) 0.491 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
28
29
30
31
32
//
// SyncSubTask.h
// PhotoSync
//
// Created by Dustin Sallings on 2005/2/4.
// Copyright 2005 Dustin Sallings. All rights reserved.
//
 
#import <AppKit/AppKit.h>
#import "Photo.h"
#import "Location.h"
 
@interface SyncSubTask : NSObject {
 
  NSString *name;
  Photo *photo;
  Location *location;
  id delegate;
 
  NSMutableArray *imgsToFetch;
}
 
-initWithName:(NSString *)n location:(Location *)l
  photo:(NSString *)p delegate:(id)del;
 
-(NSString *)name;
 
-(void)run;
-(void)cancel;
 
@end