blob: ab448a12686f7bc00f5e40d1232b043436790d15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//
// DDHotKeyAppDelegate.h
// DDHotKey
//
// Created by Dave DeLong on 2/24/10.
// Copyright 2010 Home. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface DDHotKeyAppDelegate : NSObject <NSApplicationDelegate> {
NSWindow *window;
}
@property (assign) IBOutlet NSWindow *window;
@end
|