mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-06 17:05:34 +00:00
19 lines
468 B
Objective-C
19 lines
468 B
Objective-C
//
|
|
// KeyboardNameTableViewCell.h
|
|
// Keyman Engine
|
|
//
|
|
// Copyright (c) 2017 SIL International. All rights reserved.
|
|
//
|
|
|
|
#import "KMManager+Internal.h"
|
|
|
|
|
|
@interface KeyboardNameTableViewCell : UITableViewCell <UIAlertViewDelegate> {
|
|
NSIndexPath *indexPath_;
|
|
}
|
|
|
|
@property (nonatomic, strong) NSIndexPath *indexPath;
|
|
|
|
- (void)setKeyboardState:(eKMKeyboardState)kbState selected:(BOOL)isSelected defaultAccessoryType:(UITableViewCellAccessoryType)accessoryType;
|
|
|
|
@end
|