//
//  RandomThread.h
//  NSThreadExtension
//
//  Created by Jonathan Lung on 10/03/07.
//  Copyright 2007 __MyCompanyName__. All rights reserved.
//  http://www.cs.toronto.edu/~lungj

#import <Cocoa/Cocoa.h>


@interface RandomThread : NSObject {

}
// @selector(run:) is called in the demo.
-(void) run:(id)anObject;
@end

