diff options
-rw-r--r-- | DomeKey.xcodeproj/project.pbxproj | 6 | ||||
-rw-r--r-- | DomeKey/LicenseHandler.h | 13 | ||||
-rw-r--r-- | DomeKey/LicenseHandler.m | 13 |
3 files changed, 32 insertions, 0 deletions
diff --git a/DomeKey.xcodeproj/project.pbxproj b/DomeKey.xcodeproj/project.pbxproj index 296ac3c..2ad09e9 100644 --- a/DomeKey.xcodeproj/project.pbxproj +++ b/DomeKey.xcodeproj/project.pbxproj @@ -13,6 +13,7 @@ D11CD06D217FECD9001FCB97 /* AquaticPrime.c in Sources */ = {isa = PBXBuildFile; fileRef = D11CD067217FECD9001FCB97 /* AquaticPrime.c */; }; D131C4D321663B6500801267 /* Mappings.m in Sources */ = {isa = PBXBuildFile; fileRef = D131C4D221663B6500801267 /* Mappings.m */; }; D160C2A12118EF9D007D1B50 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = D160C2A02118EF9D007D1B50 /* main.m */; }; + D18255B12180018C00ABC1E0 /* LicenseHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = D18255B02180018C00ABC1E0 /* LicenseHandler.m */; }; 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 */; }; @@ -81,6 +82,8 @@ D160C29D2118EF9D007D1B50 /* DomeKey */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = DomeKey; sourceTree = BUILT_PRODUCTS_DIR; }; D160C2A02118EF9D007D1B50 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; }; D160C31521197983007D1B50 /* DDHidLib.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = DDHidLib.xcodeproj; path = lib/DDHidLib/DDHidLib.xcodeproj; sourceTree = "<group>"; }; + D18255AF2180018C00ABC1E0 /* LicenseHandler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LicenseHandler.h; sourceTree = "<group>"; }; + D18255B02180018C00ABC1E0 /* LicenseHandler.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LicenseHandler.m; sourceTree = "<group>"; }; D1E101FC2133FA0300B2CA29 /* KeyboardSimulator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = KeyboardSimulator.h; sourceTree = "<group>"; }; D1E101FD2133FA0300B2CA29 /* KeyboardSimulator.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KeyboardSimulator.m; sourceTree = "<group>"; }; D1E1020721345E2200B2CA29 /* char_to_key_code.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = char_to_key_code.m; path = lib/char_to_key_code.m; sourceTree = SOURCE_ROOT; }; @@ -136,6 +139,8 @@ D160C2A02118EF9D007D1B50 /* main.m */, D11184602125206E00961687 /* AppDelegate.h */, D11184612125206E00961687 /* AppDelegate.m */, + D18255AF2180018C00ABC1E0 /* LicenseHandler.h */, + D18255B02180018C00ABC1E0 /* LicenseHandler.m */, ); path = DomeKey; sourceTree = "<group>"; @@ -275,6 +280,7 @@ D11CD06D217FECD9001FCB97 /* AquaticPrime.c in Sources */, D1E1020821345E2300B2CA29 /* char_to_key_code.m in Sources */, D11184622125206E00961687 /* AppDelegate.m in Sources */, + D18255B12180018C00ABC1E0 /* LicenseHandler.m in Sources */, D1E101FE2133FA0300B2CA29 /* KeyboardSimulator.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; diff --git a/DomeKey/LicenseHandler.h b/DomeKey/LicenseHandler.h new file mode 100644 index 0000000..d8a2b66 --- /dev/null +++ b/DomeKey/LicenseHandler.h @@ -0,0 +1,13 @@ +// +// LicenseHandler.h +// DomeKey +// +// Created by tw on 10/24/18. +// Copyright © 2018 tw. All rights reserved. +// + +#import <Foundation/Foundation.h> + +@interface LicenseHandler : NSObject + +@end diff --git a/DomeKey/LicenseHandler.m b/DomeKey/LicenseHandler.m new file mode 100644 index 0000000..9c1e719 --- /dev/null +++ b/DomeKey/LicenseHandler.m @@ -0,0 +1,13 @@ +// +// LicenseHandler.m +// DomeKey +// +// Created by tw on 10/24/18. +// Copyright © 2018 tw. All rights reserved. +// + +#import "LicenseHandler.h" + +@implementation LicenseHandler + +@end |