public
Description: A Mac OS X photo uploader program for my photo album.
Homepage: http://bleu.west.spy.net/~dustin/projects/photoupload/
Clone URL: git://github.com/dustin/photoupload.git
dustin (author)
Mon Oct 29 22:11:24 -0700 2007
commit  63f39e4d4d6371aeb1b7afb5ef375f57cea456f5
tree    0a10805d736d82caf73478bf79514ffc794c559f
parent  3725f3fbb6f13fb33293b37303d88c1e48b95ef1
photoupload / Batch.h
100644 49 lines (36 sloc) 0.941 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
38
39
40
41
42
43
44
45
46
47
48
49
//
// Batch.h
// PhotoUpload
// arch-tag: 5798C0D0-9196-11D8-9921-000A957659CC
//
// Created by Dustin Sallings on Wed Oct 09 2002.
// Copyright (c) 2002 SPY internetworking. All rights reserved.
//
 
#import <Foundation/Foundation.h>
 
 
@interface Batch : NSObject <NSCoding> {
    NSString *_url;
    NSString *_username;
    NSString *_password;
    NSString *_category;
    NSString *_keywords;
    NSString *_description;
    NSDate *_taken;
    NSArray *_files;
}
 
-(NSString *)url;
-(void)setUrl:(NSString *)to;
 
-(NSString *)username;
-(void)setUsername:(NSString *)to;
 
-(NSString *)password;
-(void)setPassword:(NSString *)to;
 
-(NSString *)category;
-(void)setCategory:(NSString *)to;
 
-(NSString *)keywords;
-(void)setKeywords:(NSString *)to;
 
-(NSString *)description;
-(void)setDescription:(NSString *)to;
 
-(NSDate *)taken;
-(void)setTaken: (NSDate *)to;
 
-(NSArray *)files;
-(void)setFiles:(NSArray *)to;
 
@end