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 / PUImage.h
100644 23 lines (16 sloc) 0.343 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
// PUImage.h
// PhotoUpload
//
// Created by Dustin Sallings on 2005/29/3.
// Copyright 2005 Dustin Sallings <dustin@spy.net>. All rights reserved.
//
 
#import <Cocoa/Cocoa.h>
 
 
@interface PUImage : NSObject {
  NSString *filename;
  NSImage *image;
}
 
-(id)initWithPath:(NSString *)path;
 
-(NSImage *)image;
-(NSString *)filename;
 
@end