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
photoupload / PUImageList.h
100644 23 lines (15 sloc) 0.333 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
// PUImageList.h
// PhotoUpload
//
// Created by Dustin Sallings on 2005/30/3.
// Copyright 2005 Dustin Sallings <dustin@spy.net>. All rights reserved.
//
 
#import <Cocoa/Cocoa.h>
 
 
@interface PUImageList : NSObject {
  
  NSMutableArray *images;
 
}
 
-(unsigned)count;
-(void)addPath:(NSString *)path;
-(NSArray *)images;
 
@end