mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-07 01:15:33 +00:00
25 lines
551 B
Objective-C
25 lines
551 B
Objective-C
//
|
|
// KMCompKey.h
|
|
// KeymanEngine4Mac
|
|
//
|
|
// Created by Serkan Kurt on 28/11/2014.
|
|
// Copyright (c) 2017 SIL International. All rights reserved.
|
|
//
|
|
|
|
#ifndef KMCompKey_h
|
|
#define KMCompKey_h
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "KMBinaryFileFormat.h"
|
|
|
|
@interface KMCompKey : NSObject
|
|
|
|
@property (assign, nonatomic) WORD key;
|
|
@property (assign, nonatomic) DWORD line;
|
|
@property (assign, nonatomic) DWORD shiftFlags;
|
|
@property (strong, nonatomic) NSString *output;
|
|
@property (strong, nonatomic) NSString *context;
|
|
|
|
@end
|
|
|
|
#endif /* KMCompKey_h */
|