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:
photosync / Location.h
100644 46 lines (32 sloc) 0.737 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
//
// Location.h
// PhotoSync
//
// Created by Dustin Sallings on 2005/2/1.
// Copyright 2005 Dustin Sallings. All rights reserved.
//
 
#import <AppKit/AppKit.h>
 
 
@interface Location : NSObject {
 
  BOOL _active;
  NSString *_url;
  NSString *_username;
  NSString *_password;
  NSString *_forUser;
  NSString *_destDir;
 
}
 
-initWithDict:(NSDictionary *)d;
-(NSDictionary *)toDict;
 
-(NSString *)urlinfo;
 
-(BOOL)isActive;
-(void)setActive:(BOOL)to;
 
-(NSString *)url;
-(void)setUrl:(NSString *)to;
 
-(NSString *)username;
-(void)setUsername:(NSString *)to;
 
-(NSString *)password;
-(void)setPassword:(NSString *)to;
 
-(NSString *)forUser;
-(void)setForUser:(NSString *)to;
 
-(NSString *)destDir;
-(void)setDestDir:(NSString *)to;
 
@end