forked from Kentzo/ShortcutRecorder
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathShortcutRecorder.h
More file actions
32 lines (27 loc) · 827 Bytes
/
ShortcutRecorder.h
File metadata and controls
32 lines (27 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//
// ShortcutRecorder.h
// ShortcutRecorder
// Copyright 2012 Contributors. All rights reserved.
//
// License: BSD
//
// Contributors to this file:
// Jesper
// Ilya Kulakov
#ifdef SRLib
#import "SRCommon.h"
#import "SRKeyCodeTransformer.h"
#import "SRModifierFlagsTransformer.h"
#import "SRKeyEquivalentTransformer.h"
#import "SRKeyEquivalentModifierMaskTransformer.h"
#import "SRValidator.h"
#import "SRRecorderControl.h"
#else // framework
#import <ShortcutRecorder/SRCommon.h>
#import <ShortcutRecorder/SRKeyCodeTransformer.h>
#import <ShortcutRecorder/SRModifierFlagsTransformer.h>
#import <ShortcutRecorder/SRKeyEquivalentTransformer.h>
#import <ShortcutRecorder/SRKeyEquivalentModifierMaskTransformer.h>
#import <ShortcutRecorder/SRValidator.h>
#import <ShortcutRecorder/SRRecorderControl.h>
#endif