aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--DomeKey.xcodeproj/project.pbxproj6
-rw-r--r--DomeKey/DKApplication.h13
-rw-r--r--DomeKey/DKApplication.m13
3 files changed, 32 insertions, 0 deletions
diff --git a/DomeKey.xcodeproj/project.pbxproj b/DomeKey.xcodeproj/project.pbxproj
index 4c7f32a..0b2d053 100644
--- a/DomeKey.xcodeproj/project.pbxproj
+++ b/DomeKey.xcodeproj/project.pbxproj
@@ -15,6 +15,7 @@
D1E101FE2133FA0300B2CA29 /* KeyboardSimulator.m in Sources */ = {isa = PBXBuildFile; fileRef = D1E101FD2133FA0300B2CA29 /* KeyboardSimulator.m */; };
D1E1020821345E2300B2CA29 /* char_to_key_code.m in Sources */ = {isa = PBXBuildFile; fileRef = D1E1020721345E2200B2CA29 /* char_to_key_code.m */; };
D1E1020B21350BAD00B2CA29 /* libdome_key_map.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D1E1020A21350BAD00B2CA29 /* libdome_key_map.a */; };
+ D1FEFD0E21691E5A0054EFE6 /* DKApplication.m in Sources */ = {isa = PBXBuildFile; fileRef = D1FEFD0D21691E5A0054EFE6 /* DKApplication.m */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
@@ -83,6 +84,8 @@
D1E102092134611800B2CA29 /* char_to_key_code.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = char_to_key_code.h; path = lib/char_to_key_code.h; sourceTree = SOURCE_ROOT; };
D1E1020A21350BAD00B2CA29 /* libdome_key_map.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libdome_key_map.a; path = "lib/dome-key-map/target/debug/libdome_key_map.a"; sourceTree = "<group>"; };
D1E1020C21350D4100B2CA29 /* dome_key_map.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = dome_key_map.h; path = "lib/dome-key-map/dome_key_map.h"; sourceTree = SOURCE_ROOT; };
+ D1FEFD0C21691E5A0054EFE6 /* DKApplication.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DKApplication.h; sourceTree = "<group>"; };
+ D1FEFD0D21691E5A0054EFE6 /* DKApplication.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DKApplication.m; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
@@ -123,6 +126,8 @@
D131C4D121663B6500801267 /* Mappings.h */,
D131C4D221663B6500801267 /* Mappings.m */,
D110C9472122E2D80094F963 /* HeadphoneKey.m */,
+ D1FEFD0C21691E5A0054EFE6 /* DKApplication.h */,
+ D1FEFD0D21691E5A0054EFE6 /* DKApplication.m */,
D1E101FC2133FA0300B2CA29 /* KeyboardSimulator.h */,
D1E101FD2133FA0300B2CA29 /* KeyboardSimulator.m */,
D160C2A02118EF9D007D1B50 /* main.m */,
@@ -259,6 +264,7 @@
buildActionMask = 2147483647;
files = (
D131C4D321663B6500801267 /* Mappings.m in Sources */,
+ D1FEFD0E21691E5A0054EFE6 /* DKApplication.m in Sources */,
D110C9482122E2D80094F963 /* HeadphoneKey.m in Sources */,
D160C2A12118EF9D007D1B50 /* main.m in Sources */,
D1E1020821345E2300B2CA29 /* char_to_key_code.m in Sources */,
diff --git a/DomeKey/DKApplication.h b/DomeKey/DKApplication.h
new file mode 100644
index 0000000..6a92266
--- /dev/null
+++ b/DomeKey/DKApplication.h
@@ -0,0 +1,13 @@
+//
+// DKApplication.h
+// DomeKey
+//
+// Created by tw on 10/6/18.
+// Copyright © 2018 tw. All rights reserved.
+//
+
+#import <Cocoa/Cocoa.h>
+
+@interface DKApplication : NSApplication
+
+@end
diff --git a/DomeKey/DKApplication.m b/DomeKey/DKApplication.m
new file mode 100644
index 0000000..9449d06
--- /dev/null
+++ b/DomeKey/DKApplication.m
@@ -0,0 +1,13 @@
+//
+// DKApplication.m
+// DomeKey
+//
+// Created by tw on 10/6/18.
+// Copyright © 2018 tw. All rights reserved.
+//
+
+#import "DKApplication.h"
+
+@implementation DKApplication
+
+@end