00001 // 00002 // FileParser.h 00003 // Word Tree 00004 // 00005 // Created by Markus Klepp on 3/26/09. 00006 // Copyright 2009 mklepp. All rights reserved. 00007 // 00008 00010 00014 #import <Cocoa/Cocoa.h> 00015 00016 @class WordCloud; 00017 00018 @interface FileParser : NSObject { 00019 00021 00023 NSString* treeText; 00024 } 00025 00026 @property (retain) NSString* treeText; 00027 00029 00031 -(NSDictionary*)inputStrings:(NSString*) file; 00032 00033 @end