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:12:08 -0700 2007
commit  3645951ef6d97a1f99754d83550e44b768a9e680
tree    d779d45f73bc18c3acbd7b17eb5640c8655a38b1
parent  63f39e4d4d6371aeb1b7afb5ef375f57cea456f5
photoupload / SizeScaler.h
100644 22 lines (15 sloc) 0.371 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
// SizeScaler.h
// PhotoUpload
// arch-tag: 6821A3B4-9196-11D8-9449-000A957659CC
//
// Created by Dustin Sallings on Sun Oct 06 2002.
// Copyright (c) 2002 SPY internetworking. All rights reserved.
//
 
#import <Foundation/Foundation.h>
 
 
@interface SizeScaler : NSObject {
    NSSize baseSize;
}
 
-initWithSize: (NSSize)base;
 
-(NSSize)scaleTo:(NSSize)size;
 
@end