Updating ITFoundation to include updates spurred by Haven development.
[ITFoundation.git] / ITCategory-NSString.h
1 /*
2  *      ITFoundation
3  *      ITCategory-NSString.h
4  *
5  *      Copyright (c) 2005 by iThink Software.
6  *      All Rights Reserved.
7  *
8  *      $Id$
9  *
10  */
11
12 #import <Foundation/Foundation.h>
13
14 @interface NSString (ITFoundationCategory)
15
16 + (id)stringWithFourCharCode:(unsigned long)fourCharCode;
17
18 - (id)initWithFourCharCode:(unsigned long)fourCharCode;
19 - (unsigned long)fourCharCode;
20
21 - (NSData *)MD5;
22 - (NSData *)SHA1;
23
24 @end