mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 16:35:33 +00:00
22 lines
421 B
Objective-C
22 lines
421 B
Objective-C
//
|
|
// TestInputMethodAppDelegate.h
|
|
//
|
|
// Copyright (c) 2018 SIL International. All rights reserved.
|
|
//
|
|
|
|
#ifndef TestInputMethodAppDelegate_h
|
|
#define TestInputMethodAppDelegate_h
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "TestInputController.h"
|
|
|
|
@interface TestInputMethodAppDelegate : NSObject {
|
|
IBOutlet NSMenu *_menu;
|
|
}
|
|
|
|
- (NSMenu *)menu;
|
|
|
|
@end
|
|
|
|
#endif /* TestInputMethodAppDelegate_h */
|