//
//  EXPTableFunctionView.m
//  Expression
//
//  Created by ashley on 07/01/2009.
//  Copyright 2009 __MyCompanyName__. All rights reserved.
//

#import "EXPTableFunctionView.h"
#import "EXPTableFunctionWindowController.h"
#import "EXPGraphComponent.h"

@implementation EXPTableFunctionView

- (id)initWithFrame:(NSRect)frame 
{
    self = [super initWithFrame:frame];
    if (self) {
    }
    return self;
}

- (void)drawRect:(NSRect)rect 
{
	[[NSColor whiteColor] set];
	[NSBezierPath fillRect:rect];
	[[controller graph] drawInView:self isSelected:NO];
}

@end