//
//  TableViewTestAppDelegate.h
//  TableViewTest
//
//  Created by Lieven Dekeyser on 03/12/09.
//  Copyright 2009 Lieven Dekeyser. All rights reserved.
//

#import <Cocoa/Cocoa.h>

@interface TableViewTestAppDelegate : NSObject <NSApplicationDelegate>
{
    NSWindow * window;
	NSArray * tableContents;
}

@property (assign) IBOutlet NSWindow *window;
@property (readonly) NSArray * tableContents;


@end
