1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-27 15:53:31 +03:00
vimr/NeoVimXpc/NeoVimXpcImpl.h

16 lines
253 B
C
Raw Normal View History

/**
* Tae Won Ha - http://taewon.de - @hataewon
* See LICENSE
*/
#import <Foundation/Foundation.h>
#import "NeoVimXpc.h"
2016-06-04 10:51:57 +03:00
@protocol NeoVimUi;
@interface NeoVimXpcImpl : NSObject <NeoVimXpc>
- (instancetype)initWithNeoVimUi:(id<NeoVimUi>)ui;
2016-06-04 10:51:57 +03:00
@end