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
photosync / PhotoClient.h
100644 37 lines (26 sloc) 0.685 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
33
34
35
36
37
//
// PhotoClient.h
// PhotoSync
//
// Created by Dustin Sallings on 2/2/2005.
// Copyright 2005 Dustin Sallings <dustin@spy.net>. All rights reserved.
//
 
#import <Cocoa/Cocoa.h>
#import "Photo.h"
 
@interface PhotoClient : NSObject {
 
  NSString *indexPath;
  NSString *el;
  NSMutableDictionary *current;
  NSMutableDictionary *keywords;
 
  NSMutableSet *photos;
 
  int section;
}
 
-initWithIndexPath:(NSString *)path;
 
-(BOOL)authenticateTo:(NSString *)base
  user:(NSString *)u passwd:(NSString *)p forUser:(NSString *)altUser;
-(void)fetchIndexFrom:(NSString *)base downloadDelegate:(id)del;
 
// Parse the index
-(void)parseIndex;
 
-(NSDictionary *)keywords;
-(NSSet *)photos;
 
@end