00001 // 00002 // WordCloud.h 00003 // Word Tree 00004 // 00005 // Created by Markus Klepp on 3/26/09. 00006 // Copyright 2009 mklepp. All rights reserved. 00007 // 00008 00009 #import <Cocoa/Cocoa.h> 00010 00012 00014 @interface WordCloud : NSObject { 00016 00019 NSMutableDictionary* wordCloudElements; 00020 } 00021 00022 @property (retain) NSMutableDictionary* wordCloudElements; 00023 00025 00027 -(id)initWithWords:(NSCountedSet*) words; 00028 00029 @end