aboutsummaryrefslogtreecommitdiffstats
path: root/DomeKey/AppDelegate.h
blob: 4b2fc4fc76d7f8c072594ab4d76d4c8b68f77143 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
//  AppDelegate.h
//  DomeKey
//
//  Created by tw on 8/16/18.
//  Copyright © 2018 tw. All rights reserved.
//

#import <Cocoa/Cocoa.h>
#import "HeadphoneKey.h"
#import "dome_key_map.h"

@interface AppDelegate : NSObject <NSApplicationDelegate> {
    HeadphoneKey *_headphone_key;
    Config *_config;
}

- (instancetype)initWithConfig:(Config *)config;

@end