1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-28 11:35:35 +03:00
vimr/NvimView/NvimServer/DataWrapper.h
Tae Won Ha 47567f002b
Use #import instead of @import
- AppCode seems to be happier
2018-02-02 10:31:34 +01:00

15 lines
226 B
Objective-C

/**
* Tae Won Ha - http://taewon.de - @hataewon
* See LICENSE
*/
#import <Foundation/Foundation.h>
@interface DataWrapper : NSObject
@property (strong) NSData *data;
@property (getter=isDataReady) bool dataReady;
@end