1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-25 06:43:24 +03:00

Use @import where appropriate

This commit is contained in:
Tae Won Ha 2016-06-18 23:14:49 +02:00
parent c95d2c3201
commit edffb8956b
No known key found for this signature in database
GPG Key ID: E40743465B5B8B44
4 changed files with 5 additions and 4 deletions

View File

@ -3,7 +3,7 @@
* See LICENSE * See LICENSE
*/ */
#import <Foundation/Foundation.h> @import Foundation;
@protocol NeoVimXpc <NSObject> @protocol NeoVimXpc <NSObject>

View File

@ -3,7 +3,8 @@
* See LICENSE * See LICENSE
*/ */
#import <Foundation/Foundation.h> @import Foundation;
#import "NeoVimXpc.h" #import "NeoVimXpc.h"
@protocol NeoVimUiBridgeProtocol; @protocol NeoVimUiBridgeProtocol;

View File

@ -3,7 +3,7 @@
* See LICENSE * See LICENSE
*/ */
#import <Foundation/Foundation.h> @import Foundation;
#import "NeoVimXpcImpl.h" #import "NeoVimXpcImpl.h"
#import "NeoVimUiBridgeProtocol.h" #import "NeoVimUiBridgeProtocol.h"

View File

@ -3,7 +3,7 @@
* See LICENSE * See LICENSE
*/ */
#import <Foundation/Foundation.h> @import Foundation;
typedef NS_ENUM(NSUInteger, FontTrait) { typedef NS_ENUM(NSUInteger, FontTrait) {
FontTraitNone = 0, FontTraitNone = 0,