#include #include "CheckBook.h" int main(int argc, char **argv) { NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; CheckBook *cb; cb = [[CheckBook alloc] init]; [cb readFile:@"tmp"]; NSDictionary *dict; dict = [NSDictionary dictionaryWithObjectsAndKeys: @"101", @"CheckNumber", @"2003-12-23", @"Date", @"I dunno", @"Description", @"Debit", @"Type", [NSNumber numberWithDouble:10.00], @"Amount", nil]; [cb addEntry: dict]; [cb saveFile:@"tmp"]; [pool release]; return 0; }