1 //
2 //  ZoomWindowThatCanBecomeKey.h
3 //  ZoomCocoa
4 //
5 //  Created by Andrew Hunter on 19/10/2005.
6 //  Copyright 2005 Andrew Hunter. All rights reserved.
7 //
8 
9 #import <Cocoa/Cocoa.h>
10 
11 //
12 // Apple, for reasons best known to themselves, have made it so that border windows can't be
13 // key by default. So we need this class to override this behaviour.
14 //
15 @interface ZoomWindowThatCanBecomeKey : NSWindow {
16 }
17 
18 @end
19