//
//  EXPStockComponent.h
//  Expression
//
//  Created by ashley on 15/11/2008.
//  Copyright 2008 __MyCompanyName__. All rights reserved.
//

#import <Cocoa/Cocoa.h>
#import "EXPComponent.h"

@interface EXPStockComponent : EXPComponent {
	NSMutableArray *_inflows;
	NSMutableArray *_outflows;
}

- (void) setInflows:(id)inflows;
- (id) inflows;
- (void) setOutflows:(id)outflows;
- (id) outflows;

@end