GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

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
dustin (author)
Sun Feb 13 02:30:46 -0800 2005
commit  192d1de476e8a68bb2b54eff65b1a97aec7fecce
tree    8ff6633792b15755d63d10617684be383a20616c
parent  31efe03ff243760c6b5db7353923fdf82c278471
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