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)
Sat Feb 05 14:45:28 -0800 2005
commit  52154e66be752baba16de91090f4bcdfa36c0bc6
tree    802b900de732209cbb7154cb73d9c9a22c1c33ae
parent  07caa1406b89aef2c4bb66399b199208bfdcdc14
photosync / PageWriter.h
100644 25 lines (17 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
//
// PageWriter.h
// PhotoSync
//
// Created by Dustin Sallings on 2005/2/4.
// Copyright 2005 Dustin Sallings. All rights reserved.
//
 
#import <Cocoa/Cocoa.h>
#import "Location.h"
#import "PhotoClient.h"
 
@interface PageWriter : NSObject {
 
}
 
+(PageWriter *)sharedInstance;
 
-(void)writePage:(NSString *)srcName dest:(NSString *)destPath
  tokens:(NSDictionary *)t;
 
-(void)setupPages:(PhotoClient *)photoClient location:(Location *)location;
 
@end