//
//  CurrencyConverterAppDelegate.h
//  CurrencyConverter
//
//  Created by Lieven Dekeyser on 19/11/09.
//  Copyright 2009 Lieven Dekeyser. All rights reserved.
//

#import <Cocoa/Cocoa.h>

@interface CurrencyConverterAppDelegate : NSObject <NSApplicationDelegate>
{
    NSWindow *window;
	
	// The easiest way to expose a member variable so Interface Builder can see it
	// is to prefix its declaration with IBOutlet
	IBOutlet NSTextField * sourceField;
	IBOutlet NSTextField * destinationField;
}

@property (assign) IBOutlet NSWindow *window;

// Indicate that a method is an action like this:
- (IBAction)convert:(id)sender;

@end
