1 //
2 //  PXPoint.h
3 //  Pixen-XCode
4 //
5 //  Created by Joe Osborn on 2004.08.08.
6 //  Copyright 2004 Open Sword Group. All rights reserved.
7 //
8 
9 #import <AppKit/AppKit.h>
10 
11 
12 @interface PXPoint : NSObject {
13 	NSPoint point;
14 }
15 + withNSPoint:(NSPoint)aPoint;
16 - initWithNSPoint:(NSPoint)aPoint;
17 - (NSPoint)pointValue;
18 - (unsigned)hash;
19 - (BOOL)isEqual:other;
20 @end
21